diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-05-21 02:01:41 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:32 +0200 |
commit | 54decced922aaa73f4c30d696679f3602c930204 (patch) | |
tree | 831b08cfe045499c0b68a1d858238ea2312ccdb4 /src | |
parent | gl_shader_manager: Remove unintentionally committed #pragma (diff) | |
download | yuzu-54decced922aaa73f4c30d696679f3602c930204.tar yuzu-54decced922aaa73f4c30d696679f3602c930204.tar.gz yuzu-54decced922aaa73f4c30d696679f3602c930204.tar.bz2 yuzu-54decced922aaa73f4c30d696679f3602c930204.tar.lz yuzu-54decced922aaa73f4c30d696679f3602c930204.tar.xz yuzu-54decced922aaa73f4c30d696679f3602c930204.tar.zst yuzu-54decced922aaa73f4c30d696679f3602c930204.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_opengl/gl_shader_manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_manager.h b/src/video_core/renderer_opengl/gl_shader_manager.h index c922bcf82..5ec57d707 100644 --- a/src/video_core/renderer_opengl/gl_shader_manager.h +++ b/src/video_core/renderer_opengl/gl_shader_manager.h @@ -82,7 +82,7 @@ private: GLuint current_source_program = 0; u32 current_assembly_mask = 0; - std::array<GLuint, NUM_STAGES> current_assembly_programs; + std::array<GLuint, NUM_STAGES> current_assembly_programs{}; GLuint current_compute_assembly_program = 0; }; |