summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorJannik Vogel <email@jannikvogel.de>2016-05-14 10:16:06 +0200
committerJannik Vogel <email@jannikvogel.de>2016-05-14 10:16:11 +0200
commitf8a11a664f579b413d11590408c2272ef332b23b (patch)
tree77b694c2b634fbca08bf6c7371d4d6a6be2b5641 /src/video_core
parentMerge pull request #1689 from Subv/shmem (diff)
downloadyuzu-f8a11a664f579b413d11590408c2272ef332b23b.tar
yuzu-f8a11a664f579b413d11590408c2272ef332b23b.tar.gz
yuzu-f8a11a664f579b413d11590408c2272ef332b23b.tar.bz2
yuzu-f8a11a664f579b413d11590408c2272ef332b23b.tar.lz
yuzu-f8a11a664f579b413d11590408c2272ef332b23b.tar.xz
yuzu-f8a11a664f579b413d11590408c2272ef332b23b.tar.zst
yuzu-f8a11a664f579b413d11590408c2272ef332b23b.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.h b/src/video_core/renderer_opengl/gl_rasterizer.h
index eed00011a..f1b4fbed8 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer.h
+++ b/src/video_core/renderer_opengl/gl_rasterizer.h
@@ -413,7 +413,7 @@ private:
UniformData data;
bool lut_dirty[6];
bool dirty;
- } uniform_block_data;
+ } uniform_block_data = {};
std::array<SamplerInfo, 3> texture_samplers;
OGLVertexArray vertex_array;
@@ -422,5 +422,5 @@ private:
OGLFramebuffer framebuffer;
std::array<OGLTexture, 6> lighting_luts;
- std::array<std::array<GLvec4, 256>, 6> lighting_lut_data;
+ std::array<std::array<GLvec4, 256>, 6> lighting_lut_data{};
};