aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.OpenGL/Constants.cs
blob: 9775b240d973787aabe9ea96bcb5b35990ab87b0 (plain)
1
2
3
4
5
6
7
8
9
10
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;
    }
}