mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-15 23:08:51 +00:00
Clipper: const correctness
This commit is contained in:
parent
d79d5d49f4
commit
5f1e444c28
2 changed files with 6 additions and 4 deletions
|
@ -14,7 +14,8 @@ void ProcessTriangle(OutputVertexData* v0, OutputVertexData* v1, OutputVertexDat
|
|||
|
||||
void ProcessLine(OutputVertexData* v0, OutputVertexData* v1);
|
||||
|
||||
bool CullTest(OutputVertexData* v0, OutputVertexData* v1, OutputVertexData* v2, bool& backface);
|
||||
bool CullTest(const OutputVertexData* v0, const OutputVertexData* v1, const OutputVertexData* v2,
|
||||
bool& backface);
|
||||
|
||||
void PerspectiveDivide(OutputVertexData* vertex);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue