VideoSW: Wipe output vertices

They shall be overwritten afterwards.
This commit is contained in:
degasus 2015-12-01 22:00:38 +01:00
parent a5904b522d
commit d28c9ae354

View File

@ -37,12 +37,12 @@ struct OutputVertexData
ALP_C ALP_C
}; };
Vec3 mvPosition; Vec3 mvPosition = {};
Vec4 projectedPosition; Vec4 projectedPosition = {};
Vec3 screenPosition; Vec3 screenPosition = {};
Vec3 normal[3]; Vec3 normal[3] = {};
u8 color[2][4]; u8 color[2][4] = {};
Vec3 texCoords[8]; Vec3 texCoords[8] = {};
void Lerp(float t, OutputVertexData *a, OutputVertexData *b) void Lerp(float t, OutputVertexData *a, OutputVertexData *b)
{ {