mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-24 14:24:14 +00:00
parent
25ec4eddfa
commit
7cd52fecb5
1 changed files with 12 additions and 4 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue