mirror of
https://git.ryujinx.app/archive/ryujinx-mirror.git
synced 2025-10-05 02:12:59 +00:00
* Fix transform feedback errors caused by host pause/resume * Fix TFB being used as something else issue with copies * This is supposed to be StreamCopy
11 lines
325 B
C#
11 lines
325 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;
|
|
}
|
|
}
|