mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-01 15:30:26 +01:00
panfrost: v7 does not support RGB32_UNORM textures
Cc: mesa-stable Fixes:c6bdd976e6("panfrost: Split out v6/v7 format tables") Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com> Reviewed-by: Alyssa Rosenzweig <alyssa@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12588> (cherry picked from commit19e29960e9)
This commit is contained in:
parent
dc1431d367
commit
a5abb4eba7
2 changed files with 5 additions and 1 deletions
|
|
@ -175,7 +175,7 @@
|
|||
"description": "panfrost: v7 does not support RGB32_UNORM textures",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "c6bdd976e6110fbf4ec1add9c11d0382e38236d3"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -334,7 +334,11 @@ const struct panfrost_format GENX(panfrost_pipe_format)[PIPE_FORMAT_COUNT] = {
|
|||
FMT(R32G32_UNORM, RG32_UNORM, RG01, L, VT__),
|
||||
FMT(R8G8B8_UNORM, RGB8_UNORM, RGB1, L, VTR_),
|
||||
FMT(R16G16B16_UNORM, RGB16_UNORM, RGB1, L, VT__),
|
||||
#if PAN_ARCH <= 6
|
||||
FMT(R32G32B32_UNORM, RGB32_UNORM, RGB1, L, VT__),
|
||||
#else
|
||||
FMT(R32G32B32_UNORM, RGB32_UNORM, RGB1, L, V___),
|
||||
#endif
|
||||
FMT(R4G4B4A4_UNORM, RGBA4_UNORM, RGBA, L, VTR_),
|
||||
FMT(B4G4R4A4_UNORM, RGBA4_UNORM, BGRA, L, VTR_),
|
||||
FMT(R16G16B16A16_UNORM, RGBA16_UNORM, RGBA, L, VT__),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue