2020-05-23 11:46:09 +02:00
|
|
|
|
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;
|
2020-10-25 21:23:42 +01:00
|
|
|
|
public const int MaxTransformFeedbackBuffers = 4;
|
2020-05-23 11:46:09 +02:00
|
|
|
|
}
|
|
|
|
|
}
|