Merge pull request #10524 from JosJuice/angle-in

VideoCommon: Remove redundant in qualifiers
This commit is contained in:
JMC47 2022-03-21 19:16:13 -04:00 committed by GitHub
commit bb7f0e18dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -194,9 +194,9 @@ void EmitPixelMainDeclaration(ShaderCode& code, u32 num_tex_inputs, u32 num_colo
{
code.Write("VARYING_LOCATION(0) in VertexData {{\n");
for (u32 i = 0; i < num_tex_inputs; i++)
code.Write(" in float3 v_tex{};\n", i);
code.Write(" float3 v_tex{};\n", i);
for (u32 i = 0; i < num_color_inputs; i++)
code.Write(" in float4 v_col{};\n", i);
code.Write(" float4 v_col{};\n", i);
code.Write("}};\n");
}
else