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;
|
||||
|
||||
public static int MaxUboSize { get; private set; }
|
||||
public int MaxUboSize { get; }
|
||||
|
||||
public GlslDecompiler(int MaxUboSize)
|
||||
{
|
||||
|
@ -109,7 +109,7 @@ namespace Ryujinx.Graphics.Gal.Shader
|
|||
{ ShaderIrInst.Xor, GetXorExpr }
|
||||
};
|
||||
|
||||
GlslDecompiler.MaxUboSize = MaxUboSize / 16;
|
||||
this.MaxUboSize = MaxUboSize / 16;
|
||||
}
|
||||
|
||||
public GlslProgram Decompile(
|
||||
|
|
Loading…
Add table
Reference in a new issue