aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.OpenGL/Constants.cs
blob: e38808b7472ed63ffce9a1d1e647405fe42833ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.Graphics.OpenGL
{
    static class Constants
    {
        public const int MaxRenderTargets = 8;
        public const int MaxViewports = 16;
        public const int MaxVertexAttribs = 16;
        public const int MaxVertexBuffers = 16;
        public const int MaxTransformFeedbackBuffers = 4;
        public const int MaxSubgroupSize = 64;
    }
}