Browse Source
gl_rasterizer: Add missing cbuf counter reset on compute
pull/15/merge
ReinUsesLisp
6 years ago
No known key found for this signature in database
GPG Key ID: 2DFC508897B39CFE
1 changed files with
2 additions and
0 deletions
-
src/video_core/renderer_opengl/gl_rasterizer.cpp
|
|
|
@ -743,6 +743,8 @@ bool RasterizerOpenGL::DrawMultiBatch(bool is_indexed) { |
|
|
|
} |
|
|
|
|
|
|
|
void RasterizerOpenGL::DispatchCompute(GPUVAddr code_addr) { |
|
|
|
buffer_cache.Acquire(); |
|
|
|
|
|
|
|
auto kernel = shader_cache.GetComputeKernel(code_addr); |
|
|
|
SetupComputeTextures(kernel); |
|
|
|
SetupComputeImages(kernel); |
|
|
|
|