summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_texture_cache.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-11-17 21:05:07 +0100
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-11-17 21:05:07 +0100
commit6dd6dc046c23957d3d8e040a92893acf31ca7980 (patch)
treec9371cd02452e4922c10088e2bd86a6c58f50ac5 /src/video_core/renderer_opengl/gl_texture_cache.h
parentvideo_core: Add S8_UINT stencil format (diff)
downloadyuzu-6dd6dc046c23957d3d8e040a92893acf31ca7980.tar
yuzu-6dd6dc046c23957d3d8e040a92893acf31ca7980.tar.gz
yuzu-6dd6dc046c23957d3d8e040a92893acf31ca7980.tar.bz2
yuzu-6dd6dc046c23957d3d8e040a92893acf31ca7980.tar.lz
yuzu-6dd6dc046c23957d3d8e040a92893acf31ca7980.tar.xz
yuzu-6dd6dc046c23957d3d8e040a92893acf31ca7980.tar.zst
yuzu-6dd6dc046c23957d3d8e040a92893acf31ca7980.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_texture_cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_texture_cache.h b/src/video_core/renderer_opengl/gl_texture_cache.h
index 1bb762568..16224e6b3 100644
--- a/src/video_core/renderer_opengl/gl_texture_cache.h
+++ b/src/video_core/renderer_opengl/gl_texture_cache.h
@@ -162,8 +162,8 @@ private:
std::array<GLuint, Shader::NUM_TEXTURE_TYPES> null_image_views{};
- std::array<OGLFramebuffer, 3> rescale_draw_fbos;
- std::array<OGLFramebuffer, 3> rescale_read_fbos;
+ std::array<OGLFramebuffer, 4> rescale_draw_fbos;
+ std::array<OGLFramebuffer, 4> rescale_read_fbos;
const Settings::ResolutionScalingInfo& resolution;
};