summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_texture_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/renderer_vulkan/vk_texture_cache.h')
-rw-r--r--src/video_core/renderer_vulkan/vk_texture_cache.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/renderer_vulkan/vk_texture_cache.h b/src/video_core/renderer_vulkan/vk_texture_cache.h
index ee0d0480d..f14525dcb 100644
--- a/src/video_core/renderer_vulkan/vk_texture_cache.h
+++ b/src/video_core/renderer_vulkan/vk_texture_cache.h
@@ -279,17 +279,17 @@ public:
return *sampler;
}
- [[nodiscard]] VkSampler HandleWithoutAnisotropy() const noexcept {
- return *sampler_without_anisotropy;
+ [[nodiscard]] VkSampler HandleWithDefaultAnisotropy() const noexcept {
+ return *sampler_default_anisotropy;
}
[[nodiscard]] bool HasAddedAnisotropy() const noexcept {
- return static_cast<bool>(sampler_without_anisotropy);
+ return static_cast<bool>(sampler_default_anisotropy);
}
private:
vk::Sampler sampler;
- vk::Sampler sampler_without_anisotropy;
+ vk::Sampler sampler_default_anisotropy;
};
class Framebuffer {