summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/texture.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-24 05:26:48 +0200
committerbunnei <bunneidev@gmail.com>2018-07-24 05:34:42 +0200
commit69c45ce71c5a600f0372746348875a626e06898b (patch)
tree5515b9dcc8fc4122e63b9eb7f7accdf5c3801d85 /src/video_core/textures/texture.h
parentmaxwell_to_gl: Implement Texture::WrapMode::Border. (diff)
downloadyuzu-69c45ce71c5a600f0372746348875a626e06898b.tar
yuzu-69c45ce71c5a600f0372746348875a626e06898b.tar.gz
yuzu-69c45ce71c5a600f0372746348875a626e06898b.tar.bz2
yuzu-69c45ce71c5a600f0372746348875a626e06898b.tar.lz
yuzu-69c45ce71c5a600f0372746348875a626e06898b.tar.xz
yuzu-69c45ce71c5a600f0372746348875a626e06898b.tar.zst
yuzu-69c45ce71c5a600f0372746348875a626e06898b.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/textures/texture.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h
index d1c755033..c6bd2f4b9 100644
--- a/src/video_core/textures/texture.h
+++ b/src/video_core/textures/texture.h
@@ -242,10 +242,10 @@ struct TSCEntry {
BitField<6, 2, TextureMipmapFilter> mip_filter;
};
INSERT_PADDING_BYTES(8);
- u32 border_color_r;
- u32 border_color_g;
- u32 border_color_b;
- u32 border_color_a;
+ float border_color_r;
+ float border_color_g;
+ float border_color_b;
+ float border_color_a;
};
static_assert(sizeof(TSCEntry) == 0x20, "TSCEntry has wrong size");