mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 14:50:17 +00:00
TRECISION: Make some functions private in Renderer3D
This commit is contained in:
parent
4eeb08e89a
commit
afcc3a724e
@ -22,6 +22,7 @@
|
||||
|
||||
#ifndef TRECISION_3D_H
|
||||
#define TRECISION_3D_H
|
||||
|
||||
#include "trecision/defines.h"
|
||||
#include "trecision/trecision.h"
|
||||
|
||||
@ -69,15 +70,15 @@ private:
|
||||
|
||||
void setZBufferRegion(int16 sx, int16 sy, int16 dx);
|
||||
int8 clockWise(int16 x1, int16 y1, int16 x2, int16 y2, int16 x3, int16 y3);
|
||||
void textureTriangle(int32 x1, int32 y1, int32 z1, int32 c1, int32 tx1, int32 ty1, int32 x2, int32 y2, int32 z2, int32 c2, int32 tx2, int32 ty2, int32 x3, int32 y3, int32 z3, int32 c3, int32 tx3, int32 ty3, STexture *t);
|
||||
void textureScanEdge(int32 x1, int32 y1, int32 z1, int32 c1, int32 tx1, int32 ty1, int32 x2, int32 y2, int32 z2, int32 c2, int32 tx2, int32 ty2);
|
||||
void shadowTriangle(int32 x1, int32 y1, int32 x2, int32 y2, int32 x3, int32 y3, uint8 cv, int32 zv);
|
||||
void shadowScanEdge(int32 x1, int32 y1, int32 x2, int32 y2);
|
||||
|
||||
public:
|
||||
Renderer3D(TrecisionEngine *vm);
|
||||
~Renderer3D();
|
||||
|
||||
void textureTriangle(int32 x1, int32 y1, int32 z1, int32 c1, int32 tx1, int32 ty1, int32 x2, int32 y2, int32 z2, int32 c2, int32 tx2, int32 ty2, int32 x3, int32 y3, int32 z3, int32 c3, int32 tx3, int32 ty3, STexture *t);
|
||||
void textureScanEdge(int32 x1, int32 y1, int32 z1, int32 c1, int32 tx1, int32 ty1, int32 x2, int32 y2, int32 z2, int32 c2, int32 tx2, int32 ty2);
|
||||
void shadowTriangle(int32 x1, int32 y1, int32 x2, int32 y2, int32 x3, int32 y3, uint8 cv, int32 zv);
|
||||
void shadowScanEdge(int32 x1, int32 y1, int32 x2, int32 y2);
|
||||
void init3DRoom(uint16 *destBuffer, int16 *zBuffer);
|
||||
void setClipping(int16 x1, int16 y1, int16 x2, int16 y2);
|
||||
void drawCharacter(uint8 flag);
|
||||
|
Loading…
Reference in New Issue
Block a user