diff options
Diffstat (limited to 'src/video_core/gpu.cpp')
| -rw-r--r-- | src/video_core/gpu.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index 1622332a4..c409af194 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp | |||
| @@ -120,6 +120,10 @@ bool GPU::CancelSyncptInterrupt(const u32 syncpoint_id, const u32 value) { | |||
| 120 | return true; | 120 | return true; |
| 121 | } | 121 | } |
| 122 | 122 | ||
| 123 | void GPU::FlushCommands() { | ||
| 124 | renderer.Rasterizer().FlushCommands(); | ||
| 125 | } | ||
| 126 | |||
| 123 | u32 RenderTargetBytesPerPixel(RenderTargetFormat format) { | 127 | u32 RenderTargetBytesPerPixel(RenderTargetFormat format) { |
| 124 | ASSERT(format != RenderTargetFormat::NONE); | 128 | ASSERT(format != RenderTargetFormat::NONE); |
| 125 | 129 | ||