Revert "Remove indexed path."

This reverts commit 25ec4eddfa.
This commit is contained in:
riperiperi 2020-03-29 17:03:54 +01:00
parent 25ec4eddfa
commit 7cd52fecb5

View file

@ -115,6 +115,13 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
}
private static string GetVec4Indexed(string vectorName, string indexExpr)
{
bool canIndexVec4 = false;
if (canIndexVec4)
{
return $"{vectorName}[{indexExpr}]";
}
else
{
string result = $"{vectorName}.x";
for (int i = 1; i < 4; i++)
@ -123,6 +130,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
}
return $"({result})";
}
}
public static string GetConstantBufferName(IAstNode slot, string offsetExpr, ShaderStage stage)
{