mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
spirv: Fix SpvImageFormatR16ui
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Cc: "17.1 17.2" <mesa-stable@lists.freedesktop.org>
This commit is contained in:
parent
277644221d
commit
95c6a97464
1 changed files with 1 additions and 1 deletions
|
|
@ -721,7 +721,7 @@ translate_image_format(SpvImageFormat format)
|
|||
case SpvImageFormatRg32ui: return 0x823C; /* GL_RG32UI */
|
||||
case SpvImageFormatRg16ui: return 0x823A; /* GL_RG16UI */
|
||||
case SpvImageFormatRg8ui: return 0x8238; /* GL_RG8UI */
|
||||
case SpvImageFormatR16ui: return 0x823A; /* GL_RG16UI */
|
||||
case SpvImageFormatR16ui: return 0x8234; /* GL_R16UI */
|
||||
case SpvImageFormatR8ui: return 0x8232; /* GL_R8UI */
|
||||
default:
|
||||
assert(!"Invalid image format");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue