From 272be321ad6ccb8bc7533c325a5faf5806e6c06f Mon Sep 17 00:00:00 2001 From: Kevin Petit Date: Wed, 26 Jul 2023 16:56:29 +0100 Subject: Add KHR suffix to Cooperative Matrix Operands Signed-off-by: Kevin Petit Change-Id: I0303c1b16e46e77f0e7e95999c606cc75f7f0d4c --- include/spirv/unified1/spirv.cs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'include/spirv/unified1/spirv.cs') diff --git a/include/spirv/unified1/spirv.cs b/include/spirv/unified1/spirv.cs index d8aab3a..222ac09 100644 --- a/include/spirv/unified1/spirv.cs +++ b/include/spirv/unified1/spirv.cs @@ -1287,21 +1287,21 @@ namespace Spv public enum CooperativeMatrixOperandsShift { - MatrixASignedComponents = 0, - MatrixBSignedComponents = 1, - MatrixCSignedComponents = 2, - MatrixResultSignedComponents = 3, - SaturatingAccumulation = 4, + MatrixASignedComponentsKHR = 0, + MatrixBSignedComponentsKHR = 1, + MatrixCSignedComponentsKHR = 2, + MatrixResultSignedComponentsKHR = 3, + SaturatingAccumulationKHR = 4, } public enum CooperativeMatrixOperandsMask { MaskNone = 0, - MatrixASignedComponents = 0x00000001, - MatrixBSignedComponents = 0x00000002, - MatrixCSignedComponents = 0x00000004, - MatrixResultSignedComponents = 0x00000008, - SaturatingAccumulation = 0x00000010, + MatrixASignedComponentsKHR = 0x00000001, + MatrixBSignedComponentsKHR = 0x00000002, + MatrixCSignedComponentsKHR = 0x00000004, + MatrixResultSignedComponentsKHR = 0x00000008, + SaturatingAccumulationKHR = 0x00000010, } public enum CooperativeMatrixLayout -- cgit v1.2.3