spirv: Use the incorporated names

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14209>
This commit is contained in:
Caio Oliveira
2021-09-15 13:20:53 -07:00
parent 53f38d3683
commit c9c50f89b2
+6 -6
View File
@@ -4458,10 +4458,10 @@ vtn_handle_preamble_instruction(struct vtn_builder *b, SpvOp opcode,
case SpvCapabilityImageGatherExtended:
case SpvCapabilityStorageImageExtendedFormats:
case SpvCapabilityVector16:
case SpvCapabilityDotProductKHR:
case SpvCapabilityDotProductInputAllKHR:
case SpvCapabilityDotProductInput4x8BitKHR:
case SpvCapabilityDotProductInput4x8BitPackedKHR:
case SpvCapabilityDotProduct:
case SpvCapabilityDotProductInputAll:
case SpvCapabilityDotProductInput4x8Bit:
case SpvCapabilityDotProductInput4x8BitPacked:
break;
case SpvCapabilityLinkage:
@@ -4702,7 +4702,7 @@ vtn_handle_preamble_instruction(struct vtn_builder *b, SpvOp opcode,
spv_check_supported(fragment_shader_pixel_interlock, cap);
break;
case SpvCapabilityDemoteToHelperInvocationEXT:
case SpvCapabilityDemoteToHelperInvocation:
spv_check_supported(demote_to_helper_invocation, cap);
b->uses_demote_to_helper_invocation = true;
break;
@@ -6120,7 +6120,7 @@ vtn_handle_body_instruction(struct vtn_builder *b, SpvOp opcode,
nir_end_invocation_interlock(&b->nb);
break;
case SpvOpDemoteToHelperInvocationEXT: {
case SpvOpDemoteToHelperInvocation: {
nir_demote(&b->nb);
break;
}