mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-08 12:15:25 +00:00
11 lines
267 B
C#
11 lines
267 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;
|
|
}
|
|
}
|