diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-23 23:26:48 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-07-23 23:34:42 -0400 |
| commit | 69c45ce71c5a600f0372746348875a626e06898b (patch) | |
| tree | 5515b9dcc8fc4122e63b9eb7f7accdf5c3801d85 /src/video_core/textures | |
| parent | 6b3e54621f8f13a754fe4c600f281bd79a3243b9 (diff) | |
gl_rasterizer: Implement texture border color.
Diffstat (limited to 'src/video_core/textures')
| -rw-r--r-- | src/video_core/textures/texture.h | 8 |
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"); |
