mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
isl: Fix the aux-map encoding for D24_UNORM_X8
Bspec: 53911 now defines the encoding for this format.
Cc: mesa-stable
Reviewed-by: Sagar Ghuge <sagar.ghuge@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7198>
(cherry picked from commit 3c87ac1f60)
This commit is contained in:
parent
07e1df3cd1
commit
1219eace69
2 changed files with 2 additions and 2 deletions
|
|
@ -4,7 +4,7 @@
|
|||
"description": "isl: Fix the aux-map encoding for D24_UNORM_X8",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"master_sha": null,
|
||||
"because_sha": null
|
||||
},
|
||||
|
|
|
|||
|
|
@ -2969,7 +2969,7 @@ isl_format_get_aux_map_encoding(enum isl_format format)
|
|||
case ISL_FORMAT_R32_SINT: return 0x12;
|
||||
case ISL_FORMAT_R32_UINT: return 0x13;
|
||||
case ISL_FORMAT_R32_FLOAT: return 0x11;
|
||||
case ISL_FORMAT_R24_UNORM_X8_TYPELESS: return 0x11;
|
||||
case ISL_FORMAT_R24_UNORM_X8_TYPELESS: return 0x13;
|
||||
case ISL_FORMAT_B5G6R5_UNORM: return 0xA;
|
||||
case ISL_FORMAT_B5G6R5_UNORM_SRGB: return 0xA;
|
||||
case ISL_FORMAT_B5G5R5A1_UNORM: return 0xA;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue