Address comments
This commit is contained in:
parent
d7bfe1b7a5
commit
27ffbc3b68
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ namespace Ryujinx.Graphics.Gal.Shader
|
||||||
|
|
||||||
private StringBuilder SB;
|
private StringBuilder SB;
|
||||||
|
|
||||||
public static int MaxUboSize { get; private set; }
|
public int MaxUboSize { get; }
|
||||||
|
|
||||||
public GlslDecompiler(int MaxUboSize)
|
public GlslDecompiler(int MaxUboSize)
|
||||||
{
|
{
|
||||||
|
@ -109,7 +109,7 @@ namespace Ryujinx.Graphics.Gal.Shader
|
||||||
{ ShaderIrInst.Xor, GetXorExpr }
|
{ ShaderIrInst.Xor, GetXorExpr }
|
||||||
};
|
};
|
||||||
|
|
||||||
GlslDecompiler.MaxUboSize = MaxUboSize / 16;
|
this.MaxUboSize = MaxUboSize / 16;
|
||||||
}
|
}
|
||||||
|
|
||||||
public GlslProgram Decompile(
|
public GlslProgram Decompile(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue