| Previous | 199869 Revisions | Next |
| r40556 Monday 31st August, 2015 at 11:20:52 UTC by Andrew Gardner |
|---|
| Removed final (?) references to "Poly New", fixing two header guards and a couple of comments. (nw) |
| [src/emu/video] | poly.h polylgcy.h |
| [src/mame/video] | namcos22.c |
| r249067 | r249068 | |
|---|---|---|
| 34 | 34 | |
| 35 | 35 | #pragma once |
| 36 | 36 | |
| 37 | #ifndef __POLYNEW_H__ | |
| 38 | #define __POLYNEW_H__ | |
| 37 | #ifndef __POLY_H__ | |
| 38 | #define __POLY_H__ | |
| 39 | 39 | |
| 40 | 40 | #include <limits.h> |
| 41 | 41 | |
| r249067 | r249068 | |
| 1172 | 1172 | return nextout - outv; |
| 1173 | 1173 | } |
| 1174 | 1174 | |
| 1175 | #endif // __POLY | |
| 1175 | #endif // __POLY_H__ |
| r249067 | r249068 | |
|---|---|---|
| 34 | 34 | |
| 35 | 35 | #pragma once |
| 36 | 36 | |
| 37 | #ifndef __POLYNEW_H__ | |
| 38 | #define __POLYNEW_H__ | |
| 37 | #ifndef __POLYLGCY_H__ | |
| 38 | #define __POLYLGCY_H__ | |
| 39 | 39 | |
| 40 | 40 | |
| 41 | 41 | /*************************************************************************** |
| r249067 | r249068 | |
| 152 | 152 | int poly_zclip_if_less(int numverts, const poly_vertex *v, poly_vertex *outv, int paramcount, float clipval); |
| 153 | 153 | |
| 154 | 154 | |
| 155 | #endif /* __POLY_H__ */ | |
| 155 | #endif /* __POLYLGCY_H__ */ |
| r249067 | r249068 | |
|---|---|---|
| 43 | 43 | #include "includes/namcos22.h" |
| 44 | 44 | |
| 45 | 45 | |
| 46 | // poly | |
| 46 | // poly constructor | |
| 47 | 47 | namcos22_renderer::namcos22_renderer(namcos22_state &state) |
| 48 | 48 | : poly_manager<float, namcos22_object_data, 4, 8000>(state.machine()), |
| 49 | 49 | m_state(state) |
| r249067 | r249068 | |
| 63 | 63 | |
| 64 | 64 | /*********************************************************************************************/ |
| 65 | 65 | |
| 66 | // poly | |
| 66 | // poly scanline callbacks | |
| 67 | 67 | void namcos22_renderer::renderscanline_uvi_full(INT32 scanline, const extent_t &extent, const namcos22_object_data &extra, int threadid) |
| 68 | 68 | { |
| 69 | 69 | float z = extent.param[0].start; |
| https://github.com/mamedev/mame/commit/9f23270e5d36eb2fceb0c7251827ba20f8ef3a14 |
| Previous | 199869 Revisions | Next |