aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/texture_cache/samples_helper.h
diff options
context:
space:
mode:
authorKelebek1 <eeeedddccc@hotmail.co.uk>2023-10-11 17:15:35 +0100
committerKelebek1 <eeeedddccc@hotmail.co.uk>2023-10-11 17:15:35 +0100
commit98cac9410c2351ceab2833ee4ec216f4bcc6bdde (patch)
treee29b61b644f96b2fad55deae49a77589ebfccc68 /src/video_core/texture_cache/samples_helper.h
parentb6d19329ac710f82c424b433dcd108adad3da9b1 (diff)
Get out of render pass before query barriers, fix image names with samples > 1, remove image alias bit
Diffstat (limited to 'src/video_core/texture_cache/samples_helper.h')
-rw-r--r--src/video_core/texture_cache/samples_helper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/samples_helper.h b/src/video_core/texture_cache/samples_helper.h
index 203ac1b11..2ee2f8312 100644
--- a/src/video_core/texture_cache/samples_helper.h
+++ b/src/video_core/texture_cache/samples_helper.h
@@ -24,7 +24,7 @@ namespace VideoCommon {
return {2, 2};
}
ASSERT_MSG(false, "Invalid number of samples={}", num_samples);
- return {1, 1};
+ return {0, 0};
}
[[nodiscard]] inline int NumSamples(Tegra::Texture::MsaaMode msaa_mode) {