2023-12-04 14:17:13 +01:00
|
|
|
namespace Ryujinx.Graphics.OpenGL
|
2020-05-23 06:46:09 -03:00
|
|
|
{
|
|
|
|
static class Constants
|
|
|
|
{
|
|
|
|
public const int MaxRenderTargets = 8;
|
|
|
|
public const int MaxViewports = 16;
|
|
|
|
public const int MaxVertexAttribs = 16;
|
|
|
|
public const int MaxVertexBuffers = 16;
|
2020-10-25 17:23:42 -03:00
|
|
|
public const int MaxTransformFeedbackBuffers = 4;
|
2023-08-16 21:31:07 -03:00
|
|
|
public const int MaxSubgroupSize = 64;
|
2020-05-23 06:46:09 -03:00
|
|
|
}
|
|
|
|
}
|