diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-24 04:44:37 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-24 04:44:37 -0700 |
| commit | 54af9c206a533e63a5785504fdac3d40e9a02cad (patch) | |
| tree | 66693082aa4ed4378bf91818c9bf2f2652e66554 /src/video_core/textures/texture.h | |
| parent | 2f029577c7a5bdab882cc711dd1939cf13ec152b (diff) | |
| parent | 69c45ce71c5a600f0372746348875a626e06898b (diff) | |
Merge pull request #789 from bunnei/tex-wrap-border
maxwell_to_gl: Implement Texture::WrapMode::Border.
Diffstat (limited to 'src/video_core/textures/texture.h')
| -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"); |
