Fixed PSO creation error in Erebus 3 map. #770

This commit is contained in:
Robert Beckebans 2023-05-22 18:27:32 +02:00
parent ab7fefcadc
commit 87bedde244

View file

@ -40,10 +40,10 @@ struct VS_IN
float4 color2 : COLOR1;
};
struct VS_OUT
struct VS_OUT
{
float4 position : POSITION;
float4 texcoord0 : TEXCOORD0;
float4 position : SV_Position;
float4 texcoord0 : TEXCOORD0_centroid;
float4 color : COLOR0;
};
// *INDENT-ON*