mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-06 21:40:05 +00:00
VideoSW: Wipe output vertices
They shall be overwritten afterwards.
This commit is contained in:
parent
a5904b522d
commit
d28c9ae354
@ -37,12 +37,12 @@ struct OutputVertexData
|
||||
ALP_C
|
||||
};
|
||||
|
||||
Vec3 mvPosition;
|
||||
Vec4 projectedPosition;
|
||||
Vec3 screenPosition;
|
||||
Vec3 normal[3];
|
||||
u8 color[2][4];
|
||||
Vec3 texCoords[8];
|
||||
Vec3 mvPosition = {};
|
||||
Vec4 projectedPosition = {};
|
||||
Vec3 screenPosition = {};
|
||||
Vec3 normal[3] = {};
|
||||
u8 color[2][4] = {};
|
||||
Vec3 texCoords[8] = {};
|
||||
|
||||
void Lerp(float t, OutputVertexData *a, OutputVertexData *b)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user