summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-07-31 22:42:37 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-16 22:11:29 +0100
commitc7a1cbad44487b2c5f9da31ce6d3c76b7dec4f05 (patch)
treede6a0d7767ce12ee65846c53a18c2744ca636ec1 /src/video_core/renderer_opengl
parentvk_rasterizer: Minor style change (diff)
downloadyuzu-c7a1cbad44487b2c5f9da31ce6d3c76b7dec4f05.tar
yuzu-c7a1cbad44487b2c5f9da31ce6d3c76b7dec4f05.tar.gz
yuzu-c7a1cbad44487b2c5f9da31ce6d3c76b7dec4f05.tar.bz2
yuzu-c7a1cbad44487b2c5f9da31ce6d3c76b7dec4f05.tar.lz
yuzu-c7a1cbad44487b2c5f9da31ce6d3c76b7dec4f05.tar.xz
yuzu-c7a1cbad44487b2c5f9da31ce6d3c76b7dec4f05.tar.zst
yuzu-c7a1cbad44487b2c5f9da31ce6d3c76b7dec4f05.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_compute_pipeline.cpp3
-rw-r--r--src/video_core/renderer_opengl/gl_graphics_pipeline.cpp3
2 files changed, 2 insertions, 4 deletions
diff --git a/src/video_core/renderer_opengl/gl_compute_pipeline.cpp b/src/video_core/renderer_opengl/gl_compute_pipeline.cpp
index 12093c3c4..02853b078 100644
--- a/src/video_core/renderer_opengl/gl_compute_pipeline.cpp
+++ b/src/video_core/renderer_opengl/gl_compute_pipeline.cpp
@@ -186,8 +186,7 @@ void ComputePipeline::Configure() {
for (u32 index = 0; index < desc.count; ++index) {
ImageView& image_view{texture_cache.GetImageView((views_it++)->id)};
textures[texture_binding] = image_view.Handle(desc.type);
- if (True(texture_cache.GetImage(image_view.image_id).flags &
- VideoCommon::ImageFlagBits::Rescaled)) {
+ if (texture_cache.IsRescaling(image_view)) {
scaling_mask |= 1u << texture_binding;
}
++texture_binding;
diff --git a/src/video_core/renderer_opengl/gl_graphics_pipeline.cpp b/src/video_core/renderer_opengl/gl_graphics_pipeline.cpp
index 01aa2897a..c3d549a6e 100644
--- a/src/video_core/renderer_opengl/gl_graphics_pipeline.cpp
+++ b/src/video_core/renderer_opengl/gl_graphics_pipeline.cpp
@@ -472,8 +472,7 @@ void GraphicsPipeline::ConfigureImpl(bool is_indexed) {
for (u32 index = 0; index < desc.count; ++index) {
ImageView& image_view{texture_cache.GetImageView((views_it++)->id)};
textures[texture_binding] = image_view.Handle(desc.type);
- if (True(texture_cache.GetImage(image_view.image_id).flags &
- VideoCommon::ImageFlagBits::Rescaled)) {
+ if (texture_cache.IsRescaling(image_view)) {
scaling_mask |= 1u << stage_texture_binding;
}
++texture_binding;