diff options
author | Jason Ekstrand <[email protected]> | 2017-07-12 11:36:29 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-08-02 09:15:01 -0700 |
commit | 95c6a97464e7baaca6e09f829da0be5ac8c50297 (patch) | |
tree | 5c94eedc1fcf05b719a076a4e5cf69f5971957a8 /src/compiler | |
parent | 277644221dd5d5c87ddfb94b358f1f2cac8fe6b2 (diff) |
spirv: Fix SpvImageFormatR16ui
Reviewed-by: Lionel Landwerlin <[email protected]>
Cc: "17.1 17.2" <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/spirv/spirv_to_nir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/spirv/spirv_to_nir.c b/src/compiler/spirv/spirv_to_nir.c index 4b9c1218cf2..7b34dad30cd 100644 --- a/src/compiler/spirv/spirv_to_nir.c +++ b/src/compiler/spirv/spirv_to_nir.c @@ -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"); |