aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Constants.cs
blob: 86af48cfa654923608330d2cd2e1b23aa3e7ca3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.Graphics.Shader
{
    static class Constants
    {
        public const int ConstantBufferSize = 0x10000; // In bytes

        public const int MaxAttributes = 16;
        public const int AllAttributesMask = (int)(uint.MaxValue >> (32 - MaxAttributes));
    }
}