diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-07-15 19:05:06 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-15 19:05:06 -0300 |
| commit | 986be200bab9eb890ee1a35a42583ec37efe23d0 (patch) | |
| tree | 7de49570f26ef43ba66381b581c31d81735913b9 /Ryujinx.Graphics.Gpu/Memory/BufferManager.cs | |
| parent | 863b0c8dcbf3a4fdf07eb43148e0f7d100947551 (diff) | |
Force TFB rebind after buffer modifications (#1392)
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Memory/BufferManager.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Memory/BufferManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs b/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs index 9712f58f..68f4929d 100644 --- a/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs +++ b/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs @@ -535,7 +535,7 @@ namespace Ryujinx.Graphics.Gpu.Memory } } - if (_transformFeedbackBuffersDirty) + if (_transformFeedbackBuffersDirty || _rebind) { _transformFeedbackBuffersDirty = false; |
