mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
forceinline IndexGenerator::WriteTriangle
This commit is contained in:
parent
d3f1bb93f2
commit
86935ab4fd
1 changed files with 2 additions and 1 deletions
|
@ -17,6 +17,7 @@
|
|||
|
||||
#include <cstddef>
|
||||
|
||||
#include "Common.h"
|
||||
#include "IndexGenerator.h"
|
||||
|
||||
/*
|
||||
|
@ -84,7 +85,7 @@ void IndexGenerator::AddIndices(int primitive, u32 numVerts)
|
|||
}
|
||||
|
||||
// Triangles
|
||||
void IndexGenerator::WriteTriangle(u32 index1, u32 index2, u32 index3)
|
||||
__forceinline void IndexGenerator::WriteTriangle(u32 index1, u32 index2, u32 index3)
|
||||
{
|
||||
*Tptr++ = index1;
|
||||
*Tptr++ = index2;
|
||||
|
|
Loading…
Add table
Reference in a new issue