Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #10524 from JosJuice/angle-in
VideoCommon: Remove redundant in qualifiers
  • Loading branch information
JMC47 committed Mar 21, 2022
2 parents 48baf09 + f1f0218 commit bb7f0e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/VideoCommon/FramebufferShaderGen.cpp
Expand Up @@ -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
Expand Down

0 comments on commit bb7f0e1

Please sign in to comment.