mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-20 05:45:55 +01:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
13 lines
369 B
C#
13 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;
|
|
}
|
|
}
|