2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
12 lines
369 B
C#
12 lines
369 B
C#
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;
|
|
}
|
|
}
|