diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-06-18 05:12:41 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:38 +0200 |
commit | fcff19e0fa3d21130bc7b6cd50a10db102b5d4d7 (patch) | |
tree | 9d80a256e72c2f51d86e2e5ecc2e64315553f12e /src/video_core/renderer_opengl | |
parent | texture_pass: Fix is_read image qualification (diff) | |
download | yuzu-fcff19e0fa3d21130bc7b6cd50a10db102b5d4d7.tar yuzu-fcff19e0fa3d21130bc7b6cd50a10db102b5d4d7.tar.gz yuzu-fcff19e0fa3d21130bc7b6cd50a10db102b5d4d7.tar.bz2 yuzu-fcff19e0fa3d21130bc7b6cd50a10db102b5d4d7.tar.lz yuzu-fcff19e0fa3d21130bc7b6cd50a10db102b5d4d7.tar.xz yuzu-fcff19e0fa3d21130bc7b6cd50a10db102b5d4d7.tar.zst yuzu-fcff19e0fa3d21130bc7b6cd50a10db102b5d4d7.zip |
Diffstat (limited to 'src/video_core/renderer_opengl')
-rw-r--r-- | src/video_core/renderer_opengl/gl_shader_cache.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_cache.cpp b/src/video_core/renderer_opengl/gl_shader_cache.cpp index b8b24dd3d..8aaadccc4 100644 --- a/src/video_core/renderer_opengl/gl_shader_cache.cpp +++ b/src/video_core/renderer_opengl/gl_shader_cache.cpp @@ -430,10 +430,10 @@ std::unique_ptr<GraphicsPipeline> ShaderCache::CreateGraphicsPipeline( previous_program = &program; } auto* const thread_worker{build_in_parallel ? workers.get() : nullptr}; - VideoCore::ShaderNotify* const notify{build_in_parallel ? &shader_notify : nullptr}; - return std::make_unique<GraphicsPipeline>( - device, texture_cache, buffer_cache, gpu_memory, maxwell3d, program_manager, state_tracker, - thread_worker, notify, sources, infos, key.xfb_enabled != 0 ? &key.xfb_state : nullptr); + return std::make_unique<GraphicsPipeline>(device, texture_cache, buffer_cache, gpu_memory, + maxwell3d, program_manager, state_tracker, + thread_worker, &shader_notify, sources, infos, + key.xfb_enabled != 0 ? &key.xfb_state : nullptr); } catch (Shader::Exception& exception) { LOG_ERROR(Render_OpenGL, "{}", exception.what()); |