mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
compiler/spirv: move the check for Int8 capability
So it is right after the checks for the other various Int* capabilities. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
8ed6d74c92
commit
e6ee07a664
1 changed files with 3 additions and 4 deletions
|
|
@ -3588,6 +3588,9 @@ vtn_handle_preamble_instruction(struct vtn_builder *b, SpvOp opcode,
|
|||
case SpvCapabilityInt16:
|
||||
spv_check_supported(int16, cap);
|
||||
break;
|
||||
case SpvCapabilityInt8:
|
||||
spv_check_supported(int8, cap);
|
||||
break;
|
||||
|
||||
case SpvCapabilityTransformFeedback:
|
||||
spv_check_supported(transform_feedback, cap);
|
||||
|
|
@ -3601,10 +3604,6 @@ vtn_handle_preamble_instruction(struct vtn_builder *b, SpvOp opcode,
|
|||
spv_check_supported(int64_atomics, cap);
|
||||
break;
|
||||
|
||||
case SpvCapabilityInt8:
|
||||
spv_check_supported(int8, cap);
|
||||
break;
|
||||
|
||||
case SpvCapabilityStorageImageMultisample:
|
||||
spv_check_supported(storage_image_ms, cap);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue