summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_graphics_pipeline.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-06-12 08:11:13 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:38 +0200
commitff3de0fb6bb46bcb59421cef203ca8e8daaec85c (patch)
tree12b91055efde18b401d2c5464bae01a2554d42b0 /src/video_core/renderer_opengl/gl_graphics_pipeline.h
parentgl_shader_cache: Move OGL shader compilation to the respective Pipeline constructor (diff)
downloadyuzu-ff3de0fb6bb46bcb59421cef203ca8e8daaec85c.tar
yuzu-ff3de0fb6bb46bcb59421cef203ca8e8daaec85c.tar.gz
yuzu-ff3de0fb6bb46bcb59421cef203ca8e8daaec85c.tar.bz2
yuzu-ff3de0fb6bb46bcb59421cef203ca8e8daaec85c.tar.lz
yuzu-ff3de0fb6bb46bcb59421cef203ca8e8daaec85c.tar.xz
yuzu-ff3de0fb6bb46bcb59421cef203ca8e8daaec85c.tar.zst
yuzu-ff3de0fb6bb46bcb59421cef203ca8e8daaec85c.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_graphics_pipeline.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_graphics_pipeline.h b/src/video_core/renderer_opengl/gl_graphics_pipeline.h
index 984bf994f..dc791be53 100644
--- a/src/video_core/renderer_opengl/gl_graphics_pipeline.h
+++ b/src/video_core/renderer_opengl/gl_graphics_pipeline.h
@@ -65,8 +65,8 @@ public:
BufferCache& buffer_cache_, Tegra::MemoryManager& gpu_memory_,
Tegra::Engines::Maxwell3D& maxwell3d_,
ProgramManager& program_manager_, StateTracker& state_tracker_,
- const std::array<std::string, 5> assembly_sources,
- const std::array<std::string, 5> glsl_sources,
+ std::array<std::string, 5> assembly_sources,
+ std::array<std::string, 5> glsl_sources,
const std::array<const Shader::Info*, 5>& infos,
const VideoCommon::TransformFeedbackState* xfb_state);