mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
Removed final (?) references to "Poly New", fixing two header guards and a
couple of comments. (nw)
This commit is contained in:
parent
7f37824e46
commit
9f23270e5d
@ -34,8 +34,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __POLYNEW_H__
|
||||
#define __POLYNEW_H__
|
||||
#ifndef __POLY_H__
|
||||
#define __POLY_H__
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
@ -1172,4 +1172,4 @@ int poly_manager<_BaseType, _ObjectData, _MaxParams, _MaxPolys>::zclip_if_less(i
|
||||
return nextout - outv;
|
||||
}
|
||||
|
||||
#endif // __POLYNEW_H__
|
||||
#endif // __POLY_H__
|
||||
|
@ -34,8 +34,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __POLYNEW_H__
|
||||
#define __POLYNEW_H__
|
||||
#ifndef __POLYLGCY_H__
|
||||
#define __POLYLGCY_H__
|
||||
|
||||
|
||||
/***************************************************************************
|
||||
@ -152,4 +152,4 @@ UINT32 poly_render_polygon(legacy_poly_manager *poly, void *dest, const rectangl
|
||||
int poly_zclip_if_less(int numverts, const poly_vertex *v, poly_vertex *outv, int paramcount, float clipval);
|
||||
|
||||
|
||||
#endif /* __POLY_H__ */
|
||||
#endif /* __POLYLGCY_H__ */
|
||||
|
@ -43,7 +43,7 @@
|
||||
#include "includes/namcos22.h"
|
||||
|
||||
|
||||
// polynew constructor
|
||||
// poly constructor
|
||||
namcos22_renderer::namcos22_renderer(namcos22_state &state)
|
||||
: poly_manager<float, namcos22_object_data, 4, 8000>(state.machine()),
|
||||
m_state(state)
|
||||
@ -63,7 +63,7 @@ void namcos22_renderer::reset()
|
||||
|
||||
/*********************************************************************************************/
|
||||
|
||||
// polynew scanline callbacks
|
||||
// poly scanline callbacks
|
||||
void namcos22_renderer::renderscanline_uvi_full(INT32 scanline, const extent_t &extent, const namcos22_object_data &extra, int threadid)
|
||||
{
|
||||
float z = extent.param[0].start;
|
||||
|
Loading…
Reference in New Issue
Block a user