trunk/src/mame/video/model3.c
| r32741 | r32742 | |
| 24 | 24 | { |
| 25 | 25 | public: |
| 26 | 26 | model3_renderer(model3_state &state, int width, int height) |
| 27 | | : poly_manager<float, model3_polydata, 6, 50000>(state.machine()), m_state(state) |
| 27 | : poly_manager<float, model3_polydata, 6, 50000>(state.machine())//, m_state(state) |
| 28 | 28 | { |
| 29 | 29 | m_fb = auto_bitmap_rgb32_alloc(state.machine(), width, height); |
| 30 | 30 | m_zb = auto_bitmap_ind32_alloc(state.machine(), width, height); |
| r32741 | r32742 | |
| 40 | 40 | void draw_scanline_tex_alpha(INT32 scanline, const extent_t &extent, const model3_polydata &extradata, int threadid); |
| 41 | 41 | |
| 42 | 42 | private: |
| 43 | | model3_state &m_state; |
| 43 | //model3_state &m_state; |
| 44 | 44 | bitmap_rgb32 *m_fb; |
| 45 | 45 | bitmap_ind32 *m_zb; |
| 46 | 46 | }; |