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

trunk/src/emu/video/poly.h
r249067r249068
3434
3535#pragma once
3636
37#ifndef __POLYNEW_H__
38#define __POLYNEW_H__
37#ifndef __POLY_H__
38#define __POLY_H__
3939
4040#include <limits.h>
4141
r249067r249068
11721172   return nextout - outv;
11731173}
11741174
1175#endif  // __POLYNEW_H__
1175#endif  // __POLY_H__
trunk/src/emu/video/polylgcy.h
r249067r249068
3434
3535#pragma once
3636
37#ifndef __POLYNEW_H__
38#define __POLYNEW_H__
37#ifndef __POLYLGCY_H__
38#define __POLYLGCY_H__
3939
4040
4141/***************************************************************************
r249067r249068
152152int poly_zclip_if_less(int numverts, const poly_vertex *v, poly_vertex *outv, int paramcount, float clipval);
153153
154154
155#endif  /* __POLY_H__ */
155#endif  /* __POLYLGCY_H__ */
trunk/src/mame/video/namcos22.c
r249067r249068
4343#include "includes/namcos22.h"
4444
4545
46// polynew constructor
46// poly constructor
4747namcos22_renderer::namcos22_renderer(namcos22_state &state)
4848   : poly_manager<float, namcos22_object_data, 4, 8000>(state.machine()),
4949      m_state(state)
r249067r249068
6363
6464/*********************************************************************************************/
6565
66// polynew scanline callbacks
66// poly scanline callbacks
6767void namcos22_renderer::renderscanline_uvi_full(INT32 scanline, const extent_t &extent, const namcos22_object_data &extra, int threadid)
6868{
6969   float z = extent.param[0].start;


Previous 199869 Revisions Next


© 1997-2024 The MAME Team