diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-10-25 17:23:42 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-25 17:23:42 -0300 |
| commit | 812e32f7753d452f5c6776fa18e2b2a26b4ff3bb (patch) | |
| tree | 4dd4c085b5e20686dbc80d14b04024108909800d /Ryujinx.Graphics.OpenGL/Constants.cs | |
| parent | cf0f0fc4e740c774eadaa328dc543ee9a03fbd09 (diff) | |
Fix transform feedback errors caused by host pause/resume and multiple uses (#1634)
* 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
Diffstat (limited to 'Ryujinx.Graphics.OpenGL/Constants.cs')
| -rw-r--r-- | Ryujinx.Graphics.OpenGL/Constants.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.OpenGL/Constants.cs b/Ryujinx.Graphics.OpenGL/Constants.cs index 9775b240..8817011a 100644 --- a/Ryujinx.Graphics.OpenGL/Constants.cs +++ b/Ryujinx.Graphics.OpenGL/Constants.cs @@ -6,5 +6,6 @@ public const int MaxViewports = 16; public const int MaxVertexAttribs = 16; public const int MaxVertexBuffers = 16; + public const int MaxTransformFeedbackBuffers = 4; } } |
