diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-02 17:07:07 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-02 17:09:46 +0200 |
commit | d92e8ab06238c78e7a9c0cecc1efc483364f43ac (patch) | |
tree | ef73166e1f3cebcc2a6d01292754d3106d11ec43 /src | |
parent | Merge pull request #896 from lioncash/audio-out (diff) | |
download | yuzu-d92e8ab06238c78e7a9c0cecc1efc483364f43ac.tar yuzu-d92e8ab06238c78e7a9c0cecc1efc483364f43ac.tar.gz yuzu-d92e8ab06238c78e7a9c0cecc1efc483364f43ac.tar.bz2 yuzu-d92e8ab06238c78e7a9c0cecc1efc483364f43ac.tar.lz yuzu-d92e8ab06238c78e7a9c0cecc1efc483364f43ac.tar.xz yuzu-d92e8ab06238c78e7a9c0cecc1efc483364f43ac.tar.zst yuzu-d92e8ab06238c78e7a9c0cecc1efc483364f43ac.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/renderer_opengl/gl_shader_manager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_manager.h b/src/video_core/renderer_opengl/gl_shader_manager.h index e29d551e1..2214c348a 100644 --- a/src/video_core/renderer_opengl/gl_shader_manager.h +++ b/src/video_core/renderer_opengl/gl_shader_manager.h @@ -105,14 +105,14 @@ public: } ShaderEntries UseProgrammableVertexShader(const MaxwellVSConfig& config, - const ShaderSetup setup) { + const ShaderSetup& setup) { ShaderEntries result; std::tie(current.vs, result) = vertex_shaders.Get(config, setup); return result; } ShaderEntries UseProgrammableFragmentShader(const MaxwellFSConfig& config, - const ShaderSetup setup) { + const ShaderSetup& setup) { ShaderEntries result; std::tie(current.fs, result) = fragment_shaders.Get(config, setup); return result; |