mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 20:00:10 +01:00
amd: fix 64-bit integer color image clears
Fixes recent CTS dEQP-VK.api.image_clearing.*r64* since the Vulkan
specification has been clarified.
Only VK_FORMAT_R64_{UINT,SINT} are supported.
Cc: mesa-stable
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23250>
This commit is contained in:
parent
0e886a93ce
commit
01bd012edd
1 changed files with 2 additions and 0 deletions
|
|
@ -3543,6 +3543,8 @@ unsigned ac_get_cb_format(enum amd_gfx_level gfx_level, enum pipe_format format)
|
|||
return V_028C70_COLOR_16;
|
||||
case 32:
|
||||
return V_028C70_COLOR_32;
|
||||
case 64:
|
||||
return V_028C70_COLOR_32_32;
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue