Previous 199869 Revisions Next

r32742 Tuesday 14th October, 2014 at 17:48:47 UTC by Curt Coder
Fixed clang build. (nw)
[src/mame/drivers]macs.c
[src/mame/video]model3.c

trunk/src/mame/drivers/macs.c
r32741r32742
197197   //AM_RANGE(0xf0, 0xf0) AM_READ(st0016_dma_r)
198198ADDRESS_MAP_END
199199
200static GFXDECODE_START( macs )
200//static GFXDECODE_START( macs )
201201//  GFXDECODE_ENTRY( NULL, 0, charlayout,      0, 16*4  )
202GFXDECODE_END
202//GFXDECODE_END
203203
204204static INPUT_PORTS_START( macs_base )
205205   /*0*/
trunk/src/mame/video/model3.c
r32741r32742
2424{
2525public:
2626   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)
2828   {
2929      m_fb = auto_bitmap_rgb32_alloc(state.machine(), width, height);
3030      m_zb = auto_bitmap_ind32_alloc(state.machine(), width, height);     
r32741r32742
4040   void draw_scanline_tex_alpha(INT32 scanline, const extent_t &extent, const model3_polydata &extradata, int threadid);
4141
4242private:
43   model3_state &m_state;
43   //model3_state &m_state;
4444   bitmap_rgb32 *m_fb;
4545   bitmap_ind32 *m_zb;
4646};

Previous 199869 Revisions Next


© 1997-2024 The MAME Team