@@ -1786,6 +1786,7 @@ typedef enum SpvOp_ {
17861786 SpvOpUntypedPtrAccessChainKHR = 4423 ,
17871787 SpvOpUntypedInBoundsPtrAccessChainKHR = 4424 ,
17881788 SpvOpUntypedArrayLengthKHR = 4425 ,
1789+ SpvOpUntypedPrefetchKHR = 4426 ,
17891790 SpvOpSubgroupAllKHR = 4428 ,
17901791 SpvOpSubgroupAnyKHR = 4429 ,
17911792 SpvOpSubgroupAllEqualKHR = 4430 ,
@@ -2541,6 +2542,7 @@ inline void SpvHasResultAndType(SpvOp opcode, bool *hasResult, bool *hasResultTy
25412542 case SpvOpUntypedPtrAccessChainKHR : * hasResult = true; * hasResultType = true; break ;
25422543 case SpvOpUntypedInBoundsPtrAccessChainKHR : * hasResult = true; * hasResultType = true; break ;
25432544 case SpvOpUntypedArrayLengthKHR : * hasResult = true; * hasResultType = true; break ;
2545+ case SpvOpUntypedPrefetchKHR : * hasResult = false; * hasResultType = false; break ;
25442546 case SpvOpSubgroupAllKHR : * hasResult = true; * hasResultType = true; break ;
25452547 case SpvOpSubgroupAnyKHR : * hasResult = true; * hasResultType = true; break ;
25462548 case SpvOpSubgroupAllEqualKHR : * hasResult = true; * hasResultType = true; break ;
@@ -4334,6 +4336,7 @@ inline const char* SpvOpToString(SpvOp value) {
43344336 case SpvOpUntypedPtrAccessChainKHR : return "OpUntypedPtrAccessChainKHR" ;
43354337 case SpvOpUntypedInBoundsPtrAccessChainKHR : return "OpUntypedInBoundsPtrAccessChainKHR" ;
43364338 case SpvOpUntypedArrayLengthKHR : return "OpUntypedArrayLengthKHR" ;
4339+ case SpvOpUntypedPrefetchKHR : return "OpUntypedPrefetchKHR" ;
43374340 case SpvOpSubgroupAllKHR : return "OpSubgroupAllKHR" ;
43384341 case SpvOpSubgroupAnyKHR : return "OpSubgroupAnyKHR" ;
43394342 case SpvOpSubgroupAllEqualKHR : return "OpSubgroupAllEqualKHR" ;
0 commit comments