mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Rasterizer: const correctness
This commit is contained in:
parent
2d0e857cb3
commit
d79d5d49f4
2 changed files with 5 additions and 3 deletions
|
@ -264,7 +264,8 @@ static void BuildBlock(s32 blockX, s32 blockY)
|
|||
}
|
||||
}
|
||||
|
||||
void DrawTriangleFrontFace(OutputVertexData* v0, OutputVertexData* v1, OutputVertexData* v2)
|
||||
void DrawTriangleFrontFace(const OutputVertexData* v0, const OutputVertexData* v1,
|
||||
const OutputVertexData* v2)
|
||||
{
|
||||
INCSTAT(stats.thisFrame.numTrianglesDrawn);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue