mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
freedreno/a6xx: Add support for EXT_texture_sRGB_R8/RG8.
Noticed to be missing when comparing format tables between turnip and freedreno. Passes dEQP-GLES31 fine. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13046>
This commit is contained in:
parent
d275184ed2
commit
20d02f347d
1 changed files with 2 additions and 0 deletions
|
|
@ -66,6 +66,7 @@ static struct fd6_format formats[PIPE_FORMAT_COUNT] = {
|
|||
VTC(R8_SINT, 8_SINT, WZYX),
|
||||
V__(R8_USCALED, 8_UINT, WZYX),
|
||||
V__(R8_SSCALED, 8_SINT, WZYX),
|
||||
_TC(R8_SRGB, 8_UNORM, WZYX),
|
||||
|
||||
FMT(A8_UNORM, NONE, 8_UNORM, A8_UNORM, WZYX),
|
||||
_TC(L8_UNORM, 8_UNORM, WZYX),
|
||||
|
|
@ -109,6 +110,7 @@ static struct fd6_format formats[PIPE_FORMAT_COUNT] = {
|
|||
VTC(R8G8_SINT, 8_8_SINT, WZYX),
|
||||
V__(R8G8_USCALED, 8_8_UINT, WZYX),
|
||||
V__(R8G8_SSCALED, 8_8_SINT, WZYX),
|
||||
_TC(R8G8_SRGB, 8_8_UNORM, WZYX),
|
||||
|
||||
_T_(L8A8_UINT, 8_8_UINT, WZYX),
|
||||
_T_(L8A8_SINT, 8_8_SINT, WZYX),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue