mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-13 15:59:23 +01:00
NativeVertexFormat: const correctness
This commit is contained in:
parent
5f1e444c28
commit
eb574e7bac
@ -44,7 +44,7 @@ struct OutputVertexData
|
||||
u8 color[2][4] = {};
|
||||
Vec3 texCoords[8] = {};
|
||||
|
||||
void Lerp(float t, OutputVertexData* a, OutputVertexData* b)
|
||||
void Lerp(float t, const OutputVertexData* a, const OutputVertexData* b)
|
||||
{
|
||||
#define LINTERP(T, OUT, IN) (OUT) + ((IN - OUT) * T)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user