diff options
Diffstat (limited to 'src/video_core/command_classes')
| -rw-r--r-- | src/video_core/command_classes/vic.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/video_core/command_classes/vic.cpp b/src/video_core/command_classes/vic.cpp index 55e632346..2b7569335 100644 --- a/src/video_core/command_classes/vic.cpp +++ b/src/video_core/command_classes/vic.cpp | |||
| @@ -110,12 +110,10 @@ void Vic::Execute() { | |||
| 110 | converted_frame_buffer.get(), block_height, 0, 0); | 110 | converted_frame_buffer.get(), block_height, 0, 0); |
| 111 | 111 | ||
| 112 | gpu.MemoryManager().WriteBlock(output_surface_luma_address, swizzled_data.data(), size); | 112 | gpu.MemoryManager().WriteBlock(output_surface_luma_address, swizzled_data.data(), size); |
| 113 | gpu.Maxwell3D().OnMemoryWrite(); | ||
| 114 | } else { | 113 | } else { |
| 115 | // send pitch linear frame | 114 | // send pitch linear frame |
| 116 | gpu.MemoryManager().WriteBlock(output_surface_luma_address, converted_frame_buf_addr, | 115 | gpu.MemoryManager().WriteBlock(output_surface_luma_address, converted_frame_buf_addr, |
| 117 | linear_size); | 116 | linear_size); |
| 118 | gpu.Maxwell3D().OnMemoryWrite(); | ||
| 119 | } | 117 | } |
| 120 | break; | 118 | break; |
| 121 | } | 119 | } |
| @@ -163,7 +161,6 @@ void Vic::Execute() { | |||
| 163 | } | 161 | } |
| 164 | gpu.MemoryManager().WriteBlock(output_surface_chroma_u_address, chroma_buffer.data(), | 162 | gpu.MemoryManager().WriteBlock(output_surface_chroma_u_address, chroma_buffer.data(), |
| 165 | chroma_buffer.size()); | 163 | chroma_buffer.size()); |
| 166 | gpu.Maxwell3D().OnMemoryWrite(); | ||
| 167 | break; | 164 | break; |
| 168 | } | 165 | } |
| 169 | default: | 166 | default: |