mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +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>
This commit is contained in:
parent
9a062383e3
commit
3c87ac1f60
1 changed files with 1 additions and 1 deletions
|
|
@ -2941,7 +2941,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