mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 16:30:10 +01:00
freedreno/a6xx: fix Z24_UNORM_S8_UINT_AS_R8G8B8A8
CI didn't run so missed this.
Note previously had :
texfmt = TFMT6_Z24_UNORM_S8_UINT
rbfmt = RB6_Z24_UNORM_S8_UINT_AS_R8G8B8A8
which are both now FMT6_Z24_UNORM_S8_UINT_AS_R8G8B8A8
Fixes: 18786cc7d5 ("freedreno/a6xx: use single format enum")
Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3804>
This commit is contained in:
parent
4151d84323
commit
5a82273f09
1 changed files with 1 additions and 1 deletions
|
|
@ -207,7 +207,7 @@ static struct fd6_format formats[PIPE_FORMAT_COUNT] = {
|
|||
_TC(X32_S8X24_UINT, 8_UINT, WZYX),
|
||||
|
||||
/* special format for blits: */
|
||||
_TC(Z24_UNORM_S8_UINT_AS_R8G8B8A8, Z24_UNORM_S8_UINT, WZYX),
|
||||
_TC(Z24_UNORM_S8_UINT_AS_R8G8B8A8, Z24_UNORM_S8_UINT_AS_R8G8B8A8, WZYX),
|
||||
|
||||
/* 48-bit */
|
||||
V__(R16G16B16_UNORM, 16_16_16_UNORM, WZYX),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue