summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_state.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-04-15 18:15:54 +0200
committerSubv <subv2112@gmail.com>2018-04-15 18:15:54 +0200
commit7da47da66e150e1d5bc1e43a37b3d9d9554b1c5f (patch)
tree9eb70498adeac6b023d29e48199364e1b6d6279a /src/video_core/renderer_opengl/gl_state.h
parentMerge pull request #333 from bunnei/const-buff-hints (diff)
downloadyuzu-7da47da66e150e1d5bc1e43a37b3d9d9554b1c5f.tar
yuzu-7da47da66e150e1d5bc1e43a37b3d9d9554b1c5f.tar.gz
yuzu-7da47da66e150e1d5bc1e43a37b3d9d9554b1c5f.tar.bz2
yuzu-7da47da66e150e1d5bc1e43a37b3d9d9554b1c5f.tar.lz
yuzu-7da47da66e150e1d5bc1e43a37b3d9d9554b1c5f.tar.xz
yuzu-7da47da66e150e1d5bc1e43a37b3d9d9554b1c5f.tar.zst
yuzu-7da47da66e150e1d5bc1e43a37b3d9d9554b1c5f.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_state.h b/src/video_core/renderer_opengl/gl_state.h
index 6a80e6a7d..75c08e645 100644
--- a/src/video_core/renderer_opengl/gl_state.h
+++ b/src/video_core/renderer_opengl/gl_state.h
@@ -124,7 +124,7 @@ public:
GLuint shader_program; // GL_CURRENT_PROGRAM
GLuint program_pipeline; // GL_PROGRAM_PIPELINE_BINDING
struct ConstBufferConfig {
- bool enabled;
+ bool enabled = false;
GLuint bindpoint;
GLuint ssbo;
};