mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-09 04:35:25 +00:00
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;
|
|
}
|
|
}
|