aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/CodeGen/Constants.cs
blob: 59e9f1458429421e01b7046a37b3b25d8eb7f247 (plain)
1
2
3
4
5
6
7
8
9
namespace Ryujinx.Graphics.Shader.CodeGen
{
    static class Constants
    {
        public const int MaxShaderStorageBuffers = 16;

        public const int ConstantBufferSize = 0x10000; // In bytes
    }
}