summaryrefslogtreecommitdiff
path: root/src/video_core/textures/texture.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2019-03-12 16:57:03 -0300
committerGravatar ReinUsesLisp2019-03-12 20:20:57 -0300
commitaa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f (patch)
treedb24e62b8d523488b1ac028e8816e7792fbf5638 /src/video_core/textures/texture.h
parentvideo_core/texture: Add a raw representation of TSCEntry (diff)
downloadyuzu-aa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f.tar.gz
yuzu-aa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f.tar.xz
yuzu-aa59d77c3bd7745f03e9bc1d1dca17bb0c338c1f.zip
vk_sampler_cache: Implement a sampler cache
Diffstat (limited to 'src/video_core/textures/texture.h')
-rw-r--r--src/video_core/textures/texture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h
index a2b98245b..ff1165053 100644
--- a/src/video_core/textures/texture.h
+++ b/src/video_core/textures/texture.h
@@ -311,7 +311,7 @@ struct TSCEntry {
311 }; 311 };
312 std::array<f32, 4> border_color; 312 std::array<f32, 4> border_color;
313 }; 313 };
314 std::array<u32, 8> raw; 314 std::array<u8, 0x20> raw;
315 }; 315 };
316 316
317 float GetMaxAnisotropy() const { 317 float GetMaxAnisotropy() const {