gstaichi 2.1.1rc3__cp313-cp313-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gstaichi/CHANGELOG.md +4 -0
- gstaichi/__init__.py +40 -0
- gstaichi/_funcs.py +706 -0
- gstaichi/_kernels.py +420 -0
- gstaichi/_lib/__init__.py +3 -0
- gstaichi/_lib/core/__init__.py +0 -0
- gstaichi/_lib/core/gstaichi_python.cpython-313-darwin.so +0 -0
- gstaichi/_lib/core/gstaichi_python.pyi +2909 -0
- gstaichi/_lib/core/py.typed +0 -0
- gstaichi/_lib/runtime/libMoltenVK.dylib +0 -0
- gstaichi/_lib/runtime/runtime_arm64.bc +0 -0
- gstaichi/_lib/utils.py +243 -0
- gstaichi/_logging.py +131 -0
- gstaichi/_snode/__init__.py +5 -0
- gstaichi/_snode/fields_builder.py +187 -0
- gstaichi/_snode/snode_tree.py +34 -0
- gstaichi/_test_tools/__init__.py +18 -0
- gstaichi/_test_tools/dataclass_test_tools.py +36 -0
- gstaichi/_test_tools/load_kernel_string.py +30 -0
- gstaichi/_test_tools/textwrap2.py +6 -0
- gstaichi/_version.py +1 -0
- gstaichi/_version_check.py +100 -0
- gstaichi/ad/__init__.py +3 -0
- gstaichi/ad/_ad.py +530 -0
- gstaichi/algorithms/__init__.py +3 -0
- gstaichi/algorithms/_algorithms.py +117 -0
- gstaichi/assets/.git +1 -0
- gstaichi/assets/Go-Regular.ttf +0 -0
- gstaichi/assets/static/imgs/ti_gallery.png +0 -0
- gstaichi/examples/lcg_python.py +26 -0
- gstaichi/examples/lcg_taichi.py +34 -0
- gstaichi/examples/minimal.py +28 -0
- gstaichi/experimental.py +16 -0
- gstaichi/lang/__init__.py +50 -0
- gstaichi/lang/_dataclass_util.py +31 -0
- gstaichi/lang/_fast_caching/__init__.py +3 -0
- gstaichi/lang/_fast_caching/args_hasher.py +110 -0
- gstaichi/lang/_fast_caching/config_hasher.py +30 -0
- gstaichi/lang/_fast_caching/fast_caching_types.py +21 -0
- gstaichi/lang/_fast_caching/function_hasher.py +57 -0
- gstaichi/lang/_fast_caching/hash_utils.py +11 -0
- gstaichi/lang/_fast_caching/python_side_cache.py +52 -0
- gstaichi/lang/_fast_caching/src_hasher.py +75 -0
- gstaichi/lang/_kernel_impl_dataclass.py +212 -0
- gstaichi/lang/_ndarray.py +352 -0
- gstaichi/lang/_ndrange.py +152 -0
- gstaichi/lang/_template_mapper.py +195 -0
- gstaichi/lang/_texture.py +172 -0
- gstaichi/lang/_wrap_inspect.py +215 -0
- gstaichi/lang/any_array.py +99 -0
- gstaichi/lang/ast/__init__.py +5 -0
- gstaichi/lang/ast/ast_transformer.py +1323 -0
- gstaichi/lang/ast/ast_transformer_utils.py +346 -0
- gstaichi/lang/ast/ast_transformers/__init__.py +0 -0
- gstaichi/lang/ast/ast_transformers/call_transformer.py +324 -0
- gstaichi/lang/ast/ast_transformers/function_def_transformer.py +304 -0
- gstaichi/lang/ast/checkers.py +106 -0
- gstaichi/lang/ast/symbol_resolver.py +57 -0
- gstaichi/lang/ast/transform.py +9 -0
- gstaichi/lang/common_ops.py +310 -0
- gstaichi/lang/exception.py +80 -0
- gstaichi/lang/expr.py +180 -0
- gstaichi/lang/field.py +428 -0
- gstaichi/lang/impl.py +1243 -0
- gstaichi/lang/kernel_arguments.py +155 -0
- gstaichi/lang/kernel_impl.py +1341 -0
- gstaichi/lang/matrix.py +1835 -0
- gstaichi/lang/matrix_ops.py +341 -0
- gstaichi/lang/matrix_ops_utils.py +190 -0
- gstaichi/lang/mesh.py +687 -0
- gstaichi/lang/misc.py +782 -0
- gstaichi/lang/ops.py +1494 -0
- gstaichi/lang/runtime_ops.py +13 -0
- gstaichi/lang/shell.py +35 -0
- gstaichi/lang/simt/__init__.py +5 -0
- gstaichi/lang/simt/block.py +94 -0
- gstaichi/lang/simt/grid.py +7 -0
- gstaichi/lang/simt/subgroup.py +191 -0
- gstaichi/lang/simt/warp.py +96 -0
- gstaichi/lang/snode.py +489 -0
- gstaichi/lang/source_builder.py +150 -0
- gstaichi/lang/struct.py +810 -0
- gstaichi/lang/util.py +312 -0
- gstaichi/linalg/__init__.py +8 -0
- gstaichi/linalg/matrixfree_cg.py +310 -0
- gstaichi/linalg/sparse_cg.py +59 -0
- gstaichi/linalg/sparse_matrix.py +303 -0
- gstaichi/linalg/sparse_solver.py +123 -0
- gstaichi/math/__init__.py +11 -0
- gstaichi/math/_complex.py +205 -0
- gstaichi/math/mathimpl.py +886 -0
- gstaichi/profiler/__init__.py +6 -0
- gstaichi/profiler/kernel_metrics.py +260 -0
- gstaichi/profiler/kernel_profiler.py +586 -0
- gstaichi/profiler/memory_profiler.py +15 -0
- gstaichi/profiler/scoped_profiler.py +36 -0
- gstaichi/sparse/__init__.py +3 -0
- gstaichi/sparse/_sparse_grid.py +77 -0
- gstaichi/tools/__init__.py +12 -0
- gstaichi/tools/diagnose.py +117 -0
- gstaichi/tools/np2ply.py +364 -0
- gstaichi/tools/vtk.py +38 -0
- gstaichi/types/__init__.py +19 -0
- gstaichi/types/annotations.py +52 -0
- gstaichi/types/compound_types.py +71 -0
- gstaichi/types/enums.py +49 -0
- gstaichi/types/ndarray_type.py +169 -0
- gstaichi/types/primitive_types.py +206 -0
- gstaichi/types/quant.py +88 -0
- gstaichi/types/texture_type.py +85 -0
- gstaichi/types/utils.py +11 -0
- gstaichi-2.1.1rc3.data/data/include/GLFW/glfw3.h +6389 -0
- gstaichi-2.1.1rc3.data/data/include/GLFW/glfw3native.h +594 -0
- gstaichi-2.1.1rc3.data/data/include/spirv-tools/instrument.hpp +268 -0
- gstaichi-2.1.1rc3.data/data/include/spirv-tools/libspirv.h +907 -0
- gstaichi-2.1.1rc3.data/data/include/spirv-tools/libspirv.hpp +375 -0
- gstaichi-2.1.1rc3.data/data/include/spirv-tools/linker.hpp +97 -0
- gstaichi-2.1.1rc3.data/data/include/spirv-tools/optimizer.hpp +970 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/GLSL.std.450.h +114 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv.h +2568 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv.hpp +2579 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_cfg.hpp +168 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_common.hpp +1920 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_cpp.hpp +93 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_cross.hpp +1171 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_cross_c.h +1074 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_cross_containers.hpp +754 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_cross_error_handling.hpp +94 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_cross_parsed_ir.hpp +256 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_cross_util.hpp +37 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_glsl.hpp +1001 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_hlsl.hpp +406 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_msl.hpp +1273 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_parser.hpp +103 -0
- gstaichi-2.1.1rc3.data/data/include/spirv_cross/spirv_reflect.hpp +91 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools/SPIRV-ToolsConfig.cmake +5 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools/SPIRV-ToolsTarget-release.cmake +29 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools/SPIRV-ToolsTarget.cmake +114 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffConfig.cmake +5 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffTargets-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffTargets.cmake +123 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-link/SPIRV-Tools-linkConfig.cmake +5 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-link/SPIRV-Tools-linkTargets-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-link/SPIRV-Tools-linkTargets.cmake +123 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintConfig.cmake +5 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintTargets-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintTargets.cmake +123 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-opt/SPIRV-Tools-optConfig.cmake +5 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-opt/SPIRV-Tools-optTargets-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-opt/SPIRV-Tools-optTargets.cmake +123 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceConfig.cmake +5 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceTarget-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceTarget.cmake +123 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/glfw3/glfw3Config.cmake +3 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/glfw3/glfw3ConfigVersion.cmake +65 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/glfw3/glfw3Targets-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/lib/cmake/glfw3/glfw3Targets.cmake +107 -0
- gstaichi-2.1.1rc3.data/data/lib/libSPIRV-Tools-shared.dylib +0 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_c/cmake/spirv_cross_cConfig-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_c/cmake/spirv_cross_cConfig.cmake +123 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_core/cmake/spirv_cross_coreConfig-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_core/cmake/spirv_cross_coreConfig.cmake +106 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_cpp/cmake/spirv_cross_cppConfig-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_cpp/cmake/spirv_cross_cppConfig.cmake +123 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_glsl/cmake/spirv_cross_glslConfig-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_glsl/cmake/spirv_cross_glslConfig.cmake +123 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_hlsl/cmake/spirv_cross_hlslConfig-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_hlsl/cmake/spirv_cross_hlslConfig.cmake +123 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_msl/cmake/spirv_cross_mslConfig-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_msl/cmake/spirv_cross_mslConfig.cmake +123 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_reflect/cmake/spirv_cross_reflectConfig-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_reflect/cmake/spirv_cross_reflectConfig.cmake +106 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_util/cmake/spirv_cross_utilConfig-release.cmake +19 -0
- gstaichi-2.1.1rc3.data/data/share/spirv_cross_util/cmake/spirv_cross_utilConfig.cmake +123 -0
- gstaichi-2.1.1rc3.dist-info/METADATA +106 -0
- gstaichi-2.1.1rc3.dist-info/RECORD +179 -0
- gstaichi-2.1.1rc3.dist-info/WHEEL +5 -0
- gstaichi-2.1.1rc3.dist-info/licenses/LICENSE +201 -0
- gstaichi-2.1.1rc3.dist-info/top_level.txt +1 -0
@@ -0,0 +1,2568 @@
|
|
1
|
+
/*
|
2
|
+
** Copyright (c) 2014-2020 The Khronos Group Inc.
|
3
|
+
**
|
4
|
+
** Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
|
+
** of this software and/or associated documentation files (the "Materials"),
|
6
|
+
** to deal in the Materials without restriction, including without limitation
|
7
|
+
** the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
8
|
+
** and/or sell copies of the Materials, and to permit persons to whom the
|
9
|
+
** Materials are furnished to do so, subject to the following conditions:
|
10
|
+
**
|
11
|
+
** The above copyright notice and this permission notice shall be included in
|
12
|
+
** all copies or substantial portions of the Materials.
|
13
|
+
**
|
14
|
+
** MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS
|
15
|
+
** STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND
|
16
|
+
** HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/
|
17
|
+
**
|
18
|
+
** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
19
|
+
** OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
20
|
+
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
21
|
+
** THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
22
|
+
** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
23
|
+
** FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS
|
24
|
+
** IN THE MATERIALS.
|
25
|
+
*/
|
26
|
+
|
27
|
+
/*
|
28
|
+
** This header is automatically generated by the same tool that creates
|
29
|
+
** the Binary Section of the SPIR-V specification.
|
30
|
+
*/
|
31
|
+
|
32
|
+
/*
|
33
|
+
** Enumeration tokens for SPIR-V, in various styles:
|
34
|
+
** C, C++, C++11, JSON, Lua, Python, C#, D, Beef
|
35
|
+
**
|
36
|
+
** - C will have tokens with a "Spv" prefix, e.g.: SpvSourceLanguageGLSL
|
37
|
+
** - C++ will have tokens in the "spv" name space, e.g.: spv::SourceLanguageGLSL
|
38
|
+
** - C++11 will use enum classes in the spv namespace, e.g.: spv::SourceLanguage::GLSL
|
39
|
+
** - Lua will use tables, e.g.: spv.SourceLanguage.GLSL
|
40
|
+
** - Python will use dictionaries, e.g.: spv['SourceLanguage']['GLSL']
|
41
|
+
** - C# will use enum classes in the Specification class located in the "Spv" namespace,
|
42
|
+
** e.g.: Spv.Specification.SourceLanguage.GLSL
|
43
|
+
** - D will have tokens under the "spv" module, e.g: spv.SourceLanguage.GLSL
|
44
|
+
** - Beef will use enum classes in the Specification class located in the "Spv" namespace,
|
45
|
+
** e.g.: Spv.Specification.SourceLanguage.GLSL
|
46
|
+
**
|
47
|
+
** Some tokens act like mask values, which can be OR'd together,
|
48
|
+
** while others are mutually exclusive. The mask-like ones have
|
49
|
+
** "Mask" in their name, and a parallel enum that has the shift
|
50
|
+
** amount (1 << x) for each corresponding enumerant.
|
51
|
+
*/
|
52
|
+
|
53
|
+
#ifndef spirv_H
|
54
|
+
#define spirv_H
|
55
|
+
|
56
|
+
typedef unsigned int SpvId;
|
57
|
+
|
58
|
+
#define SPV_VERSION 0x10600
|
59
|
+
#define SPV_REVISION 1
|
60
|
+
|
61
|
+
static const unsigned int SpvMagicNumber = 0x07230203;
|
62
|
+
static const unsigned int SpvVersion = 0x00010600;
|
63
|
+
static const unsigned int SpvRevision = 1;
|
64
|
+
static const unsigned int SpvOpCodeMask = 0xffff;
|
65
|
+
static const unsigned int SpvWordCountShift = 16;
|
66
|
+
|
67
|
+
typedef enum SpvSourceLanguage_ {
|
68
|
+
SpvSourceLanguageUnknown = 0,
|
69
|
+
SpvSourceLanguageESSL = 1,
|
70
|
+
SpvSourceLanguageGLSL = 2,
|
71
|
+
SpvSourceLanguageOpenCL_C = 3,
|
72
|
+
SpvSourceLanguageOpenCL_CPP = 4,
|
73
|
+
SpvSourceLanguageHLSL = 5,
|
74
|
+
SpvSourceLanguageCPP_for_OpenCL = 6,
|
75
|
+
SpvSourceLanguageSYCL = 7,
|
76
|
+
SpvSourceLanguageMax = 0x7fffffff,
|
77
|
+
} SpvSourceLanguage;
|
78
|
+
|
79
|
+
typedef enum SpvExecutionModel_ {
|
80
|
+
SpvExecutionModelVertex = 0,
|
81
|
+
SpvExecutionModelTessellationControl = 1,
|
82
|
+
SpvExecutionModelTessellationEvaluation = 2,
|
83
|
+
SpvExecutionModelGeometry = 3,
|
84
|
+
SpvExecutionModelFragment = 4,
|
85
|
+
SpvExecutionModelGLCompute = 5,
|
86
|
+
SpvExecutionModelKernel = 6,
|
87
|
+
SpvExecutionModelTaskNV = 5267,
|
88
|
+
SpvExecutionModelMeshNV = 5268,
|
89
|
+
SpvExecutionModelRayGenerationKHR = 5313,
|
90
|
+
SpvExecutionModelRayGenerationNV = 5313,
|
91
|
+
SpvExecutionModelIntersectionKHR = 5314,
|
92
|
+
SpvExecutionModelIntersectionNV = 5314,
|
93
|
+
SpvExecutionModelAnyHitKHR = 5315,
|
94
|
+
SpvExecutionModelAnyHitNV = 5315,
|
95
|
+
SpvExecutionModelClosestHitKHR = 5316,
|
96
|
+
SpvExecutionModelClosestHitNV = 5316,
|
97
|
+
SpvExecutionModelMissKHR = 5317,
|
98
|
+
SpvExecutionModelMissNV = 5317,
|
99
|
+
SpvExecutionModelCallableKHR = 5318,
|
100
|
+
SpvExecutionModelCallableNV = 5318,
|
101
|
+
SpvExecutionModelTaskEXT = 5364,
|
102
|
+
SpvExecutionModelMeshEXT = 5365,
|
103
|
+
SpvExecutionModelMax = 0x7fffffff,
|
104
|
+
} SpvExecutionModel;
|
105
|
+
|
106
|
+
typedef enum SpvAddressingModel_ {
|
107
|
+
SpvAddressingModelLogical = 0,
|
108
|
+
SpvAddressingModelPhysical32 = 1,
|
109
|
+
SpvAddressingModelPhysical64 = 2,
|
110
|
+
SpvAddressingModelPhysicalStorageBuffer64 = 5348,
|
111
|
+
SpvAddressingModelPhysicalStorageBuffer64EXT = 5348,
|
112
|
+
SpvAddressingModelMax = 0x7fffffff,
|
113
|
+
} SpvAddressingModel;
|
114
|
+
|
115
|
+
typedef enum SpvMemoryModel_ {
|
116
|
+
SpvMemoryModelSimple = 0,
|
117
|
+
SpvMemoryModelGLSL450 = 1,
|
118
|
+
SpvMemoryModelOpenCL = 2,
|
119
|
+
SpvMemoryModelVulkan = 3,
|
120
|
+
SpvMemoryModelVulkanKHR = 3,
|
121
|
+
SpvMemoryModelMax = 0x7fffffff,
|
122
|
+
} SpvMemoryModel;
|
123
|
+
|
124
|
+
typedef enum SpvExecutionMode_ {
|
125
|
+
SpvExecutionModeInvocations = 0,
|
126
|
+
SpvExecutionModeSpacingEqual = 1,
|
127
|
+
SpvExecutionModeSpacingFractionalEven = 2,
|
128
|
+
SpvExecutionModeSpacingFractionalOdd = 3,
|
129
|
+
SpvExecutionModeVertexOrderCw = 4,
|
130
|
+
SpvExecutionModeVertexOrderCcw = 5,
|
131
|
+
SpvExecutionModePixelCenterInteger = 6,
|
132
|
+
SpvExecutionModeOriginUpperLeft = 7,
|
133
|
+
SpvExecutionModeOriginLowerLeft = 8,
|
134
|
+
SpvExecutionModeEarlyFragmentTests = 9,
|
135
|
+
SpvExecutionModePointMode = 10,
|
136
|
+
SpvExecutionModeXfb = 11,
|
137
|
+
SpvExecutionModeDepthReplacing = 12,
|
138
|
+
SpvExecutionModeDepthGreater = 14,
|
139
|
+
SpvExecutionModeDepthLess = 15,
|
140
|
+
SpvExecutionModeDepthUnchanged = 16,
|
141
|
+
SpvExecutionModeLocalSize = 17,
|
142
|
+
SpvExecutionModeLocalSizeHint = 18,
|
143
|
+
SpvExecutionModeInputPoints = 19,
|
144
|
+
SpvExecutionModeInputLines = 20,
|
145
|
+
SpvExecutionModeInputLinesAdjacency = 21,
|
146
|
+
SpvExecutionModeTriangles = 22,
|
147
|
+
SpvExecutionModeInputTrianglesAdjacency = 23,
|
148
|
+
SpvExecutionModeQuads = 24,
|
149
|
+
SpvExecutionModeIsolines = 25,
|
150
|
+
SpvExecutionModeOutputVertices = 26,
|
151
|
+
SpvExecutionModeOutputPoints = 27,
|
152
|
+
SpvExecutionModeOutputLineStrip = 28,
|
153
|
+
SpvExecutionModeOutputTriangleStrip = 29,
|
154
|
+
SpvExecutionModeVecTypeHint = 30,
|
155
|
+
SpvExecutionModeContractionOff = 31,
|
156
|
+
SpvExecutionModeInitializer = 33,
|
157
|
+
SpvExecutionModeFinalizer = 34,
|
158
|
+
SpvExecutionModeSubgroupSize = 35,
|
159
|
+
SpvExecutionModeSubgroupsPerWorkgroup = 36,
|
160
|
+
SpvExecutionModeSubgroupsPerWorkgroupId = 37,
|
161
|
+
SpvExecutionModeLocalSizeId = 38,
|
162
|
+
SpvExecutionModeLocalSizeHintId = 39,
|
163
|
+
SpvExecutionModeSubgroupUniformControlFlowKHR = 4421,
|
164
|
+
SpvExecutionModePostDepthCoverage = 4446,
|
165
|
+
SpvExecutionModeDenormPreserve = 4459,
|
166
|
+
SpvExecutionModeDenormFlushToZero = 4460,
|
167
|
+
SpvExecutionModeSignedZeroInfNanPreserve = 4461,
|
168
|
+
SpvExecutionModeRoundingModeRTE = 4462,
|
169
|
+
SpvExecutionModeRoundingModeRTZ = 4463,
|
170
|
+
SpvExecutionModeEarlyAndLateFragmentTestsAMD = 5017,
|
171
|
+
SpvExecutionModeStencilRefReplacingEXT = 5027,
|
172
|
+
SpvExecutionModeStencilRefUnchangedFrontAMD = 5079,
|
173
|
+
SpvExecutionModeStencilRefGreaterFrontAMD = 5080,
|
174
|
+
SpvExecutionModeStencilRefLessFrontAMD = 5081,
|
175
|
+
SpvExecutionModeStencilRefUnchangedBackAMD = 5082,
|
176
|
+
SpvExecutionModeStencilRefGreaterBackAMD = 5083,
|
177
|
+
SpvExecutionModeStencilRefLessBackAMD = 5084,
|
178
|
+
SpvExecutionModeOutputLinesEXT = 5269,
|
179
|
+
SpvExecutionModeOutputLinesNV = 5269,
|
180
|
+
SpvExecutionModeOutputPrimitivesEXT = 5270,
|
181
|
+
SpvExecutionModeOutputPrimitivesNV = 5270,
|
182
|
+
SpvExecutionModeDerivativeGroupQuadsNV = 5289,
|
183
|
+
SpvExecutionModeDerivativeGroupLinearNV = 5290,
|
184
|
+
SpvExecutionModeOutputTrianglesEXT = 5298,
|
185
|
+
SpvExecutionModeOutputTrianglesNV = 5298,
|
186
|
+
SpvExecutionModePixelInterlockOrderedEXT = 5366,
|
187
|
+
SpvExecutionModePixelInterlockUnorderedEXT = 5367,
|
188
|
+
SpvExecutionModeSampleInterlockOrderedEXT = 5368,
|
189
|
+
SpvExecutionModeSampleInterlockUnorderedEXT = 5369,
|
190
|
+
SpvExecutionModeShadingRateInterlockOrderedEXT = 5370,
|
191
|
+
SpvExecutionModeShadingRateInterlockUnorderedEXT = 5371,
|
192
|
+
SpvExecutionModeSharedLocalMemorySizeINTEL = 5618,
|
193
|
+
SpvExecutionModeRoundingModeRTPINTEL = 5620,
|
194
|
+
SpvExecutionModeRoundingModeRTNINTEL = 5621,
|
195
|
+
SpvExecutionModeFloatingPointModeALTINTEL = 5622,
|
196
|
+
SpvExecutionModeFloatingPointModeIEEEINTEL = 5623,
|
197
|
+
SpvExecutionModeMaxWorkgroupSizeINTEL = 5893,
|
198
|
+
SpvExecutionModeMaxWorkDimINTEL = 5894,
|
199
|
+
SpvExecutionModeNoGlobalOffsetINTEL = 5895,
|
200
|
+
SpvExecutionModeNumSIMDWorkitemsINTEL = 5896,
|
201
|
+
SpvExecutionModeSchedulerTargetFmaxMhzINTEL = 5903,
|
202
|
+
SpvExecutionModeNamedBarrierCountINTEL = 6417,
|
203
|
+
SpvExecutionModeMax = 0x7fffffff,
|
204
|
+
} SpvExecutionMode;
|
205
|
+
|
206
|
+
typedef enum SpvStorageClass_ {
|
207
|
+
SpvStorageClassUniformConstant = 0,
|
208
|
+
SpvStorageClassInput = 1,
|
209
|
+
SpvStorageClassUniform = 2,
|
210
|
+
SpvStorageClassOutput = 3,
|
211
|
+
SpvStorageClassWorkgroup = 4,
|
212
|
+
SpvStorageClassCrossWorkgroup = 5,
|
213
|
+
SpvStorageClassPrivate = 6,
|
214
|
+
SpvStorageClassFunction = 7,
|
215
|
+
SpvStorageClassGeneric = 8,
|
216
|
+
SpvStorageClassPushConstant = 9,
|
217
|
+
SpvStorageClassAtomicCounter = 10,
|
218
|
+
SpvStorageClassImage = 11,
|
219
|
+
SpvStorageClassStorageBuffer = 12,
|
220
|
+
SpvStorageClassCallableDataKHR = 5328,
|
221
|
+
SpvStorageClassCallableDataNV = 5328,
|
222
|
+
SpvStorageClassIncomingCallableDataKHR = 5329,
|
223
|
+
SpvStorageClassIncomingCallableDataNV = 5329,
|
224
|
+
SpvStorageClassRayPayloadKHR = 5338,
|
225
|
+
SpvStorageClassRayPayloadNV = 5338,
|
226
|
+
SpvStorageClassHitAttributeKHR = 5339,
|
227
|
+
SpvStorageClassHitAttributeNV = 5339,
|
228
|
+
SpvStorageClassIncomingRayPayloadKHR = 5342,
|
229
|
+
SpvStorageClassIncomingRayPayloadNV = 5342,
|
230
|
+
SpvStorageClassShaderRecordBufferKHR = 5343,
|
231
|
+
SpvStorageClassShaderRecordBufferNV = 5343,
|
232
|
+
SpvStorageClassPhysicalStorageBuffer = 5349,
|
233
|
+
SpvStorageClassPhysicalStorageBufferEXT = 5349,
|
234
|
+
SpvStorageClassTaskPayloadWorkgroupEXT = 5402,
|
235
|
+
SpvStorageClassCodeSectionINTEL = 5605,
|
236
|
+
SpvStorageClassDeviceOnlyINTEL = 5936,
|
237
|
+
SpvStorageClassHostOnlyINTEL = 5937,
|
238
|
+
SpvStorageClassMax = 0x7fffffff,
|
239
|
+
} SpvStorageClass;
|
240
|
+
|
241
|
+
typedef enum SpvDim_ {
|
242
|
+
SpvDim1D = 0,
|
243
|
+
SpvDim2D = 1,
|
244
|
+
SpvDim3D = 2,
|
245
|
+
SpvDimCube = 3,
|
246
|
+
SpvDimRect = 4,
|
247
|
+
SpvDimBuffer = 5,
|
248
|
+
SpvDimSubpassData = 6,
|
249
|
+
SpvDimMax = 0x7fffffff,
|
250
|
+
} SpvDim;
|
251
|
+
|
252
|
+
typedef enum SpvSamplerAddressingMode_ {
|
253
|
+
SpvSamplerAddressingModeNone = 0,
|
254
|
+
SpvSamplerAddressingModeClampToEdge = 1,
|
255
|
+
SpvSamplerAddressingModeClamp = 2,
|
256
|
+
SpvSamplerAddressingModeRepeat = 3,
|
257
|
+
SpvSamplerAddressingModeRepeatMirrored = 4,
|
258
|
+
SpvSamplerAddressingModeMax = 0x7fffffff,
|
259
|
+
} SpvSamplerAddressingMode;
|
260
|
+
|
261
|
+
typedef enum SpvSamplerFilterMode_ {
|
262
|
+
SpvSamplerFilterModeNearest = 0,
|
263
|
+
SpvSamplerFilterModeLinear = 1,
|
264
|
+
SpvSamplerFilterModeMax = 0x7fffffff,
|
265
|
+
} SpvSamplerFilterMode;
|
266
|
+
|
267
|
+
typedef enum SpvImageFormat_ {
|
268
|
+
SpvImageFormatUnknown = 0,
|
269
|
+
SpvImageFormatRgba32f = 1,
|
270
|
+
SpvImageFormatRgba16f = 2,
|
271
|
+
SpvImageFormatR32f = 3,
|
272
|
+
SpvImageFormatRgba8 = 4,
|
273
|
+
SpvImageFormatRgba8Snorm = 5,
|
274
|
+
SpvImageFormatRg32f = 6,
|
275
|
+
SpvImageFormatRg16f = 7,
|
276
|
+
SpvImageFormatR11fG11fB10f = 8,
|
277
|
+
SpvImageFormatR16f = 9,
|
278
|
+
SpvImageFormatRgba16 = 10,
|
279
|
+
SpvImageFormatRgb10A2 = 11,
|
280
|
+
SpvImageFormatRg16 = 12,
|
281
|
+
SpvImageFormatRg8 = 13,
|
282
|
+
SpvImageFormatR16 = 14,
|
283
|
+
SpvImageFormatR8 = 15,
|
284
|
+
SpvImageFormatRgba16Snorm = 16,
|
285
|
+
SpvImageFormatRg16Snorm = 17,
|
286
|
+
SpvImageFormatRg8Snorm = 18,
|
287
|
+
SpvImageFormatR16Snorm = 19,
|
288
|
+
SpvImageFormatR8Snorm = 20,
|
289
|
+
SpvImageFormatRgba32i = 21,
|
290
|
+
SpvImageFormatRgba16i = 22,
|
291
|
+
SpvImageFormatRgba8i = 23,
|
292
|
+
SpvImageFormatR32i = 24,
|
293
|
+
SpvImageFormatRg32i = 25,
|
294
|
+
SpvImageFormatRg16i = 26,
|
295
|
+
SpvImageFormatRg8i = 27,
|
296
|
+
SpvImageFormatR16i = 28,
|
297
|
+
SpvImageFormatR8i = 29,
|
298
|
+
SpvImageFormatRgba32ui = 30,
|
299
|
+
SpvImageFormatRgba16ui = 31,
|
300
|
+
SpvImageFormatRgba8ui = 32,
|
301
|
+
SpvImageFormatR32ui = 33,
|
302
|
+
SpvImageFormatRgb10a2ui = 34,
|
303
|
+
SpvImageFormatRg32ui = 35,
|
304
|
+
SpvImageFormatRg16ui = 36,
|
305
|
+
SpvImageFormatRg8ui = 37,
|
306
|
+
SpvImageFormatR16ui = 38,
|
307
|
+
SpvImageFormatR8ui = 39,
|
308
|
+
SpvImageFormatR64ui = 40,
|
309
|
+
SpvImageFormatR64i = 41,
|
310
|
+
SpvImageFormatMax = 0x7fffffff,
|
311
|
+
} SpvImageFormat;
|
312
|
+
|
313
|
+
typedef enum SpvImageChannelOrder_ {
|
314
|
+
SpvImageChannelOrderR = 0,
|
315
|
+
SpvImageChannelOrderA = 1,
|
316
|
+
SpvImageChannelOrderRG = 2,
|
317
|
+
SpvImageChannelOrderRA = 3,
|
318
|
+
SpvImageChannelOrderRGB = 4,
|
319
|
+
SpvImageChannelOrderRGBA = 5,
|
320
|
+
SpvImageChannelOrderBGRA = 6,
|
321
|
+
SpvImageChannelOrderARGB = 7,
|
322
|
+
SpvImageChannelOrderIntensity = 8,
|
323
|
+
SpvImageChannelOrderLuminance = 9,
|
324
|
+
SpvImageChannelOrderRx = 10,
|
325
|
+
SpvImageChannelOrderRGx = 11,
|
326
|
+
SpvImageChannelOrderRGBx = 12,
|
327
|
+
SpvImageChannelOrderDepth = 13,
|
328
|
+
SpvImageChannelOrderDepthStencil = 14,
|
329
|
+
SpvImageChannelOrdersRGB = 15,
|
330
|
+
SpvImageChannelOrdersRGBx = 16,
|
331
|
+
SpvImageChannelOrdersRGBA = 17,
|
332
|
+
SpvImageChannelOrdersBGRA = 18,
|
333
|
+
SpvImageChannelOrderABGR = 19,
|
334
|
+
SpvImageChannelOrderMax = 0x7fffffff,
|
335
|
+
} SpvImageChannelOrder;
|
336
|
+
|
337
|
+
typedef enum SpvImageChannelDataType_ {
|
338
|
+
SpvImageChannelDataTypeSnormInt8 = 0,
|
339
|
+
SpvImageChannelDataTypeSnormInt16 = 1,
|
340
|
+
SpvImageChannelDataTypeUnormInt8 = 2,
|
341
|
+
SpvImageChannelDataTypeUnormInt16 = 3,
|
342
|
+
SpvImageChannelDataTypeUnormShort565 = 4,
|
343
|
+
SpvImageChannelDataTypeUnormShort555 = 5,
|
344
|
+
SpvImageChannelDataTypeUnormInt101010 = 6,
|
345
|
+
SpvImageChannelDataTypeSignedInt8 = 7,
|
346
|
+
SpvImageChannelDataTypeSignedInt16 = 8,
|
347
|
+
SpvImageChannelDataTypeSignedInt32 = 9,
|
348
|
+
SpvImageChannelDataTypeUnsignedInt8 = 10,
|
349
|
+
SpvImageChannelDataTypeUnsignedInt16 = 11,
|
350
|
+
SpvImageChannelDataTypeUnsignedInt32 = 12,
|
351
|
+
SpvImageChannelDataTypeHalfFloat = 13,
|
352
|
+
SpvImageChannelDataTypeFloat = 14,
|
353
|
+
SpvImageChannelDataTypeUnormInt24 = 15,
|
354
|
+
SpvImageChannelDataTypeUnormInt101010_2 = 16,
|
355
|
+
SpvImageChannelDataTypeMax = 0x7fffffff,
|
356
|
+
} SpvImageChannelDataType;
|
357
|
+
|
358
|
+
typedef enum SpvImageOperandsShift_ {
|
359
|
+
SpvImageOperandsBiasShift = 0,
|
360
|
+
SpvImageOperandsLodShift = 1,
|
361
|
+
SpvImageOperandsGradShift = 2,
|
362
|
+
SpvImageOperandsConstOffsetShift = 3,
|
363
|
+
SpvImageOperandsOffsetShift = 4,
|
364
|
+
SpvImageOperandsConstOffsetsShift = 5,
|
365
|
+
SpvImageOperandsSampleShift = 6,
|
366
|
+
SpvImageOperandsMinLodShift = 7,
|
367
|
+
SpvImageOperandsMakeTexelAvailableShift = 8,
|
368
|
+
SpvImageOperandsMakeTexelAvailableKHRShift = 8,
|
369
|
+
SpvImageOperandsMakeTexelVisibleShift = 9,
|
370
|
+
SpvImageOperandsMakeTexelVisibleKHRShift = 9,
|
371
|
+
SpvImageOperandsNonPrivateTexelShift = 10,
|
372
|
+
SpvImageOperandsNonPrivateTexelKHRShift = 10,
|
373
|
+
SpvImageOperandsVolatileTexelShift = 11,
|
374
|
+
SpvImageOperandsVolatileTexelKHRShift = 11,
|
375
|
+
SpvImageOperandsSignExtendShift = 12,
|
376
|
+
SpvImageOperandsZeroExtendShift = 13,
|
377
|
+
SpvImageOperandsNontemporalShift = 14,
|
378
|
+
SpvImageOperandsOffsetsShift = 16,
|
379
|
+
SpvImageOperandsMax = 0x7fffffff,
|
380
|
+
} SpvImageOperandsShift;
|
381
|
+
|
382
|
+
typedef enum SpvImageOperandsMask_ {
|
383
|
+
SpvImageOperandsMaskNone = 0,
|
384
|
+
SpvImageOperandsBiasMask = 0x00000001,
|
385
|
+
SpvImageOperandsLodMask = 0x00000002,
|
386
|
+
SpvImageOperandsGradMask = 0x00000004,
|
387
|
+
SpvImageOperandsConstOffsetMask = 0x00000008,
|
388
|
+
SpvImageOperandsOffsetMask = 0x00000010,
|
389
|
+
SpvImageOperandsConstOffsetsMask = 0x00000020,
|
390
|
+
SpvImageOperandsSampleMask = 0x00000040,
|
391
|
+
SpvImageOperandsMinLodMask = 0x00000080,
|
392
|
+
SpvImageOperandsMakeTexelAvailableMask = 0x00000100,
|
393
|
+
SpvImageOperandsMakeTexelAvailableKHRMask = 0x00000100,
|
394
|
+
SpvImageOperandsMakeTexelVisibleMask = 0x00000200,
|
395
|
+
SpvImageOperandsMakeTexelVisibleKHRMask = 0x00000200,
|
396
|
+
SpvImageOperandsNonPrivateTexelMask = 0x00000400,
|
397
|
+
SpvImageOperandsNonPrivateTexelKHRMask = 0x00000400,
|
398
|
+
SpvImageOperandsVolatileTexelMask = 0x00000800,
|
399
|
+
SpvImageOperandsVolatileTexelKHRMask = 0x00000800,
|
400
|
+
SpvImageOperandsSignExtendMask = 0x00001000,
|
401
|
+
SpvImageOperandsZeroExtendMask = 0x00002000,
|
402
|
+
SpvImageOperandsNontemporalMask = 0x00004000,
|
403
|
+
SpvImageOperandsOffsetsMask = 0x00010000,
|
404
|
+
} SpvImageOperandsMask;
|
405
|
+
|
406
|
+
typedef enum SpvFPFastMathModeShift_ {
|
407
|
+
SpvFPFastMathModeNotNaNShift = 0,
|
408
|
+
SpvFPFastMathModeNotInfShift = 1,
|
409
|
+
SpvFPFastMathModeNSZShift = 2,
|
410
|
+
SpvFPFastMathModeAllowRecipShift = 3,
|
411
|
+
SpvFPFastMathModeFastShift = 4,
|
412
|
+
SpvFPFastMathModeAllowContractFastINTELShift = 16,
|
413
|
+
SpvFPFastMathModeAllowReassocINTELShift = 17,
|
414
|
+
SpvFPFastMathModeMax = 0x7fffffff,
|
415
|
+
} SpvFPFastMathModeShift;
|
416
|
+
|
417
|
+
typedef enum SpvFPFastMathModeMask_ {
|
418
|
+
SpvFPFastMathModeMaskNone = 0,
|
419
|
+
SpvFPFastMathModeNotNaNMask = 0x00000001,
|
420
|
+
SpvFPFastMathModeNotInfMask = 0x00000002,
|
421
|
+
SpvFPFastMathModeNSZMask = 0x00000004,
|
422
|
+
SpvFPFastMathModeAllowRecipMask = 0x00000008,
|
423
|
+
SpvFPFastMathModeFastMask = 0x00000010,
|
424
|
+
SpvFPFastMathModeAllowContractFastINTELMask = 0x00010000,
|
425
|
+
SpvFPFastMathModeAllowReassocINTELMask = 0x00020000,
|
426
|
+
} SpvFPFastMathModeMask;
|
427
|
+
|
428
|
+
typedef enum SpvFPRoundingMode_ {
|
429
|
+
SpvFPRoundingModeRTE = 0,
|
430
|
+
SpvFPRoundingModeRTZ = 1,
|
431
|
+
SpvFPRoundingModeRTP = 2,
|
432
|
+
SpvFPRoundingModeRTN = 3,
|
433
|
+
SpvFPRoundingModeMax = 0x7fffffff,
|
434
|
+
} SpvFPRoundingMode;
|
435
|
+
|
436
|
+
typedef enum SpvLinkageType_ {
|
437
|
+
SpvLinkageTypeExport = 0,
|
438
|
+
SpvLinkageTypeImport = 1,
|
439
|
+
SpvLinkageTypeLinkOnceODR = 2,
|
440
|
+
SpvLinkageTypeMax = 0x7fffffff,
|
441
|
+
} SpvLinkageType;
|
442
|
+
|
443
|
+
typedef enum SpvAccessQualifier_ {
|
444
|
+
SpvAccessQualifierReadOnly = 0,
|
445
|
+
SpvAccessQualifierWriteOnly = 1,
|
446
|
+
SpvAccessQualifierReadWrite = 2,
|
447
|
+
SpvAccessQualifierMax = 0x7fffffff,
|
448
|
+
} SpvAccessQualifier;
|
449
|
+
|
450
|
+
typedef enum SpvFunctionParameterAttribute_ {
|
451
|
+
SpvFunctionParameterAttributeZext = 0,
|
452
|
+
SpvFunctionParameterAttributeSext = 1,
|
453
|
+
SpvFunctionParameterAttributeByVal = 2,
|
454
|
+
SpvFunctionParameterAttributeSret = 3,
|
455
|
+
SpvFunctionParameterAttributeNoAlias = 4,
|
456
|
+
SpvFunctionParameterAttributeNoCapture = 5,
|
457
|
+
SpvFunctionParameterAttributeNoWrite = 6,
|
458
|
+
SpvFunctionParameterAttributeNoReadWrite = 7,
|
459
|
+
SpvFunctionParameterAttributeMax = 0x7fffffff,
|
460
|
+
} SpvFunctionParameterAttribute;
|
461
|
+
|
462
|
+
typedef enum SpvDecoration_ {
|
463
|
+
SpvDecorationRelaxedPrecision = 0,
|
464
|
+
SpvDecorationSpecId = 1,
|
465
|
+
SpvDecorationBlock = 2,
|
466
|
+
SpvDecorationBufferBlock = 3,
|
467
|
+
SpvDecorationRowMajor = 4,
|
468
|
+
SpvDecorationColMajor = 5,
|
469
|
+
SpvDecorationArrayStride = 6,
|
470
|
+
SpvDecorationMatrixStride = 7,
|
471
|
+
SpvDecorationGLSLShared = 8,
|
472
|
+
SpvDecorationGLSLPacked = 9,
|
473
|
+
SpvDecorationCPacked = 10,
|
474
|
+
SpvDecorationBuiltIn = 11,
|
475
|
+
SpvDecorationNoPerspective = 13,
|
476
|
+
SpvDecorationFlat = 14,
|
477
|
+
SpvDecorationPatch = 15,
|
478
|
+
SpvDecorationCentroid = 16,
|
479
|
+
SpvDecorationSample = 17,
|
480
|
+
SpvDecorationInvariant = 18,
|
481
|
+
SpvDecorationRestrict = 19,
|
482
|
+
SpvDecorationAliased = 20,
|
483
|
+
SpvDecorationVolatile = 21,
|
484
|
+
SpvDecorationConstant = 22,
|
485
|
+
SpvDecorationCoherent = 23,
|
486
|
+
SpvDecorationNonWritable = 24,
|
487
|
+
SpvDecorationNonReadable = 25,
|
488
|
+
SpvDecorationUniform = 26,
|
489
|
+
SpvDecorationUniformId = 27,
|
490
|
+
SpvDecorationSaturatedConversion = 28,
|
491
|
+
SpvDecorationStream = 29,
|
492
|
+
SpvDecorationLocation = 30,
|
493
|
+
SpvDecorationComponent = 31,
|
494
|
+
SpvDecorationIndex = 32,
|
495
|
+
SpvDecorationBinding = 33,
|
496
|
+
SpvDecorationDescriptorSet = 34,
|
497
|
+
SpvDecorationOffset = 35,
|
498
|
+
SpvDecorationXfbBuffer = 36,
|
499
|
+
SpvDecorationXfbStride = 37,
|
500
|
+
SpvDecorationFuncParamAttr = 38,
|
501
|
+
SpvDecorationFPRoundingMode = 39,
|
502
|
+
SpvDecorationFPFastMathMode = 40,
|
503
|
+
SpvDecorationLinkageAttributes = 41,
|
504
|
+
SpvDecorationNoContraction = 42,
|
505
|
+
SpvDecorationInputAttachmentIndex = 43,
|
506
|
+
SpvDecorationAlignment = 44,
|
507
|
+
SpvDecorationMaxByteOffset = 45,
|
508
|
+
SpvDecorationAlignmentId = 46,
|
509
|
+
SpvDecorationMaxByteOffsetId = 47,
|
510
|
+
SpvDecorationNoSignedWrap = 4469,
|
511
|
+
SpvDecorationNoUnsignedWrap = 4470,
|
512
|
+
SpvDecorationExplicitInterpAMD = 4999,
|
513
|
+
SpvDecorationOverrideCoverageNV = 5248,
|
514
|
+
SpvDecorationPassthroughNV = 5250,
|
515
|
+
SpvDecorationViewportRelativeNV = 5252,
|
516
|
+
SpvDecorationSecondaryViewportRelativeNV = 5256,
|
517
|
+
SpvDecorationPerPrimitiveEXT = 5271,
|
518
|
+
SpvDecorationPerPrimitiveNV = 5271,
|
519
|
+
SpvDecorationPerViewNV = 5272,
|
520
|
+
SpvDecorationPerTaskNV = 5273,
|
521
|
+
SpvDecorationPerVertexKHR = 5285,
|
522
|
+
SpvDecorationPerVertexNV = 5285,
|
523
|
+
SpvDecorationNonUniform = 5300,
|
524
|
+
SpvDecorationNonUniformEXT = 5300,
|
525
|
+
SpvDecorationRestrictPointer = 5355,
|
526
|
+
SpvDecorationRestrictPointerEXT = 5355,
|
527
|
+
SpvDecorationAliasedPointer = 5356,
|
528
|
+
SpvDecorationAliasedPointerEXT = 5356,
|
529
|
+
SpvDecorationBindlessSamplerNV = 5398,
|
530
|
+
SpvDecorationBindlessImageNV = 5399,
|
531
|
+
SpvDecorationBoundSamplerNV = 5400,
|
532
|
+
SpvDecorationBoundImageNV = 5401,
|
533
|
+
SpvDecorationSIMTCallINTEL = 5599,
|
534
|
+
SpvDecorationReferencedIndirectlyINTEL = 5602,
|
535
|
+
SpvDecorationClobberINTEL = 5607,
|
536
|
+
SpvDecorationSideEffectsINTEL = 5608,
|
537
|
+
SpvDecorationVectorComputeVariableINTEL = 5624,
|
538
|
+
SpvDecorationFuncParamIOKindINTEL = 5625,
|
539
|
+
SpvDecorationVectorComputeFunctionINTEL = 5626,
|
540
|
+
SpvDecorationStackCallINTEL = 5627,
|
541
|
+
SpvDecorationGlobalVariableOffsetINTEL = 5628,
|
542
|
+
SpvDecorationCounterBuffer = 5634,
|
543
|
+
SpvDecorationHlslCounterBufferGOOGLE = 5634,
|
544
|
+
SpvDecorationHlslSemanticGOOGLE = 5635,
|
545
|
+
SpvDecorationUserSemantic = 5635,
|
546
|
+
SpvDecorationUserTypeGOOGLE = 5636,
|
547
|
+
SpvDecorationFunctionRoundingModeINTEL = 5822,
|
548
|
+
SpvDecorationFunctionDenormModeINTEL = 5823,
|
549
|
+
SpvDecorationRegisterINTEL = 5825,
|
550
|
+
SpvDecorationMemoryINTEL = 5826,
|
551
|
+
SpvDecorationNumbanksINTEL = 5827,
|
552
|
+
SpvDecorationBankwidthINTEL = 5828,
|
553
|
+
SpvDecorationMaxPrivateCopiesINTEL = 5829,
|
554
|
+
SpvDecorationSinglepumpINTEL = 5830,
|
555
|
+
SpvDecorationDoublepumpINTEL = 5831,
|
556
|
+
SpvDecorationMaxReplicatesINTEL = 5832,
|
557
|
+
SpvDecorationSimpleDualPortINTEL = 5833,
|
558
|
+
SpvDecorationMergeINTEL = 5834,
|
559
|
+
SpvDecorationBankBitsINTEL = 5835,
|
560
|
+
SpvDecorationForcePow2DepthINTEL = 5836,
|
561
|
+
SpvDecorationBurstCoalesceINTEL = 5899,
|
562
|
+
SpvDecorationCacheSizeINTEL = 5900,
|
563
|
+
SpvDecorationDontStaticallyCoalesceINTEL = 5901,
|
564
|
+
SpvDecorationPrefetchINTEL = 5902,
|
565
|
+
SpvDecorationStallEnableINTEL = 5905,
|
566
|
+
SpvDecorationFuseLoopsInFunctionINTEL = 5907,
|
567
|
+
SpvDecorationAliasScopeINTEL = 5914,
|
568
|
+
SpvDecorationNoAliasINTEL = 5915,
|
569
|
+
SpvDecorationBufferLocationINTEL = 5921,
|
570
|
+
SpvDecorationIOPipeStorageINTEL = 5944,
|
571
|
+
SpvDecorationFunctionFloatingPointModeINTEL = 6080,
|
572
|
+
SpvDecorationSingleElementVectorINTEL = 6085,
|
573
|
+
SpvDecorationVectorComputeCallableFunctionINTEL = 6087,
|
574
|
+
SpvDecorationMediaBlockIOINTEL = 6140,
|
575
|
+
SpvDecorationMax = 0x7fffffff,
|
576
|
+
} SpvDecoration;
|
577
|
+
|
578
|
+
typedef enum SpvBuiltIn_ {
|
579
|
+
SpvBuiltInPosition = 0,
|
580
|
+
SpvBuiltInPointSize = 1,
|
581
|
+
SpvBuiltInClipDistance = 3,
|
582
|
+
SpvBuiltInCullDistance = 4,
|
583
|
+
SpvBuiltInVertexId = 5,
|
584
|
+
SpvBuiltInInstanceId = 6,
|
585
|
+
SpvBuiltInPrimitiveId = 7,
|
586
|
+
SpvBuiltInInvocationId = 8,
|
587
|
+
SpvBuiltInLayer = 9,
|
588
|
+
SpvBuiltInViewportIndex = 10,
|
589
|
+
SpvBuiltInTessLevelOuter = 11,
|
590
|
+
SpvBuiltInTessLevelInner = 12,
|
591
|
+
SpvBuiltInTessCoord = 13,
|
592
|
+
SpvBuiltInPatchVertices = 14,
|
593
|
+
SpvBuiltInFragCoord = 15,
|
594
|
+
SpvBuiltInPointCoord = 16,
|
595
|
+
SpvBuiltInFrontFacing = 17,
|
596
|
+
SpvBuiltInSampleId = 18,
|
597
|
+
SpvBuiltInSamplePosition = 19,
|
598
|
+
SpvBuiltInSampleMask = 20,
|
599
|
+
SpvBuiltInFragDepth = 22,
|
600
|
+
SpvBuiltInHelperInvocation = 23,
|
601
|
+
SpvBuiltInNumWorkgroups = 24,
|
602
|
+
SpvBuiltInWorkgroupSize = 25,
|
603
|
+
SpvBuiltInWorkgroupId = 26,
|
604
|
+
SpvBuiltInLocalInvocationId = 27,
|
605
|
+
SpvBuiltInGlobalInvocationId = 28,
|
606
|
+
SpvBuiltInLocalInvocationIndex = 29,
|
607
|
+
SpvBuiltInWorkDim = 30,
|
608
|
+
SpvBuiltInGlobalSize = 31,
|
609
|
+
SpvBuiltInEnqueuedWorkgroupSize = 32,
|
610
|
+
SpvBuiltInGlobalOffset = 33,
|
611
|
+
SpvBuiltInGlobalLinearId = 34,
|
612
|
+
SpvBuiltInSubgroupSize = 36,
|
613
|
+
SpvBuiltInSubgroupMaxSize = 37,
|
614
|
+
SpvBuiltInNumSubgroups = 38,
|
615
|
+
SpvBuiltInNumEnqueuedSubgroups = 39,
|
616
|
+
SpvBuiltInSubgroupId = 40,
|
617
|
+
SpvBuiltInSubgroupLocalInvocationId = 41,
|
618
|
+
SpvBuiltInVertexIndex = 42,
|
619
|
+
SpvBuiltInInstanceIndex = 43,
|
620
|
+
SpvBuiltInSubgroupEqMask = 4416,
|
621
|
+
SpvBuiltInSubgroupEqMaskKHR = 4416,
|
622
|
+
SpvBuiltInSubgroupGeMask = 4417,
|
623
|
+
SpvBuiltInSubgroupGeMaskKHR = 4417,
|
624
|
+
SpvBuiltInSubgroupGtMask = 4418,
|
625
|
+
SpvBuiltInSubgroupGtMaskKHR = 4418,
|
626
|
+
SpvBuiltInSubgroupLeMask = 4419,
|
627
|
+
SpvBuiltInSubgroupLeMaskKHR = 4419,
|
628
|
+
SpvBuiltInSubgroupLtMask = 4420,
|
629
|
+
SpvBuiltInSubgroupLtMaskKHR = 4420,
|
630
|
+
SpvBuiltInBaseVertex = 4424,
|
631
|
+
SpvBuiltInBaseInstance = 4425,
|
632
|
+
SpvBuiltInDrawIndex = 4426,
|
633
|
+
SpvBuiltInPrimitiveShadingRateKHR = 4432,
|
634
|
+
SpvBuiltInDeviceIndex = 4438,
|
635
|
+
SpvBuiltInViewIndex = 4440,
|
636
|
+
SpvBuiltInShadingRateKHR = 4444,
|
637
|
+
SpvBuiltInBaryCoordNoPerspAMD = 4992,
|
638
|
+
SpvBuiltInBaryCoordNoPerspCentroidAMD = 4993,
|
639
|
+
SpvBuiltInBaryCoordNoPerspSampleAMD = 4994,
|
640
|
+
SpvBuiltInBaryCoordSmoothAMD = 4995,
|
641
|
+
SpvBuiltInBaryCoordSmoothCentroidAMD = 4996,
|
642
|
+
SpvBuiltInBaryCoordSmoothSampleAMD = 4997,
|
643
|
+
SpvBuiltInBaryCoordPullModelAMD = 4998,
|
644
|
+
SpvBuiltInFragStencilRefEXT = 5014,
|
645
|
+
SpvBuiltInViewportMaskNV = 5253,
|
646
|
+
SpvBuiltInSecondaryPositionNV = 5257,
|
647
|
+
SpvBuiltInSecondaryViewportMaskNV = 5258,
|
648
|
+
SpvBuiltInPositionPerViewNV = 5261,
|
649
|
+
SpvBuiltInViewportMaskPerViewNV = 5262,
|
650
|
+
SpvBuiltInFullyCoveredEXT = 5264,
|
651
|
+
SpvBuiltInTaskCountNV = 5274,
|
652
|
+
SpvBuiltInPrimitiveCountNV = 5275,
|
653
|
+
SpvBuiltInPrimitiveIndicesNV = 5276,
|
654
|
+
SpvBuiltInClipDistancePerViewNV = 5277,
|
655
|
+
SpvBuiltInCullDistancePerViewNV = 5278,
|
656
|
+
SpvBuiltInLayerPerViewNV = 5279,
|
657
|
+
SpvBuiltInMeshViewCountNV = 5280,
|
658
|
+
SpvBuiltInMeshViewIndicesNV = 5281,
|
659
|
+
SpvBuiltInBaryCoordKHR = 5286,
|
660
|
+
SpvBuiltInBaryCoordNV = 5286,
|
661
|
+
SpvBuiltInBaryCoordNoPerspKHR = 5287,
|
662
|
+
SpvBuiltInBaryCoordNoPerspNV = 5287,
|
663
|
+
SpvBuiltInFragSizeEXT = 5292,
|
664
|
+
SpvBuiltInFragmentSizeNV = 5292,
|
665
|
+
SpvBuiltInFragInvocationCountEXT = 5293,
|
666
|
+
SpvBuiltInInvocationsPerPixelNV = 5293,
|
667
|
+
SpvBuiltInPrimitivePointIndicesEXT = 5294,
|
668
|
+
SpvBuiltInPrimitiveLineIndicesEXT = 5295,
|
669
|
+
SpvBuiltInPrimitiveTriangleIndicesEXT = 5296,
|
670
|
+
SpvBuiltInCullPrimitiveEXT = 5299,
|
671
|
+
SpvBuiltInLaunchIdKHR = 5319,
|
672
|
+
SpvBuiltInLaunchIdNV = 5319,
|
673
|
+
SpvBuiltInLaunchSizeKHR = 5320,
|
674
|
+
SpvBuiltInLaunchSizeNV = 5320,
|
675
|
+
SpvBuiltInWorldRayOriginKHR = 5321,
|
676
|
+
SpvBuiltInWorldRayOriginNV = 5321,
|
677
|
+
SpvBuiltInWorldRayDirectionKHR = 5322,
|
678
|
+
SpvBuiltInWorldRayDirectionNV = 5322,
|
679
|
+
SpvBuiltInObjectRayOriginKHR = 5323,
|
680
|
+
SpvBuiltInObjectRayOriginNV = 5323,
|
681
|
+
SpvBuiltInObjectRayDirectionKHR = 5324,
|
682
|
+
SpvBuiltInObjectRayDirectionNV = 5324,
|
683
|
+
SpvBuiltInRayTminKHR = 5325,
|
684
|
+
SpvBuiltInRayTminNV = 5325,
|
685
|
+
SpvBuiltInRayTmaxKHR = 5326,
|
686
|
+
SpvBuiltInRayTmaxNV = 5326,
|
687
|
+
SpvBuiltInInstanceCustomIndexKHR = 5327,
|
688
|
+
SpvBuiltInInstanceCustomIndexNV = 5327,
|
689
|
+
SpvBuiltInObjectToWorldKHR = 5330,
|
690
|
+
SpvBuiltInObjectToWorldNV = 5330,
|
691
|
+
SpvBuiltInWorldToObjectKHR = 5331,
|
692
|
+
SpvBuiltInWorldToObjectNV = 5331,
|
693
|
+
SpvBuiltInHitTNV = 5332,
|
694
|
+
SpvBuiltInHitKindKHR = 5333,
|
695
|
+
SpvBuiltInHitKindNV = 5333,
|
696
|
+
SpvBuiltInCurrentRayTimeNV = 5334,
|
697
|
+
SpvBuiltInIncomingRayFlagsKHR = 5351,
|
698
|
+
SpvBuiltInIncomingRayFlagsNV = 5351,
|
699
|
+
SpvBuiltInRayGeometryIndexKHR = 5352,
|
700
|
+
SpvBuiltInWarpsPerSMNV = 5374,
|
701
|
+
SpvBuiltInSMCountNV = 5375,
|
702
|
+
SpvBuiltInWarpIDNV = 5376,
|
703
|
+
SpvBuiltInSMIDNV = 5377,
|
704
|
+
SpvBuiltInCullMaskKHR = 6021,
|
705
|
+
SpvBuiltInMax = 0x7fffffff,
|
706
|
+
} SpvBuiltIn;
|
707
|
+
|
708
|
+
typedef enum SpvSelectionControlShift_ {
|
709
|
+
SpvSelectionControlFlattenShift = 0,
|
710
|
+
SpvSelectionControlDontFlattenShift = 1,
|
711
|
+
SpvSelectionControlMax = 0x7fffffff,
|
712
|
+
} SpvSelectionControlShift;
|
713
|
+
|
714
|
+
typedef enum SpvSelectionControlMask_ {
|
715
|
+
SpvSelectionControlMaskNone = 0,
|
716
|
+
SpvSelectionControlFlattenMask = 0x00000001,
|
717
|
+
SpvSelectionControlDontFlattenMask = 0x00000002,
|
718
|
+
} SpvSelectionControlMask;
|
719
|
+
|
720
|
+
typedef enum SpvLoopControlShift_ {
|
721
|
+
SpvLoopControlUnrollShift = 0,
|
722
|
+
SpvLoopControlDontUnrollShift = 1,
|
723
|
+
SpvLoopControlDependencyInfiniteShift = 2,
|
724
|
+
SpvLoopControlDependencyLengthShift = 3,
|
725
|
+
SpvLoopControlMinIterationsShift = 4,
|
726
|
+
SpvLoopControlMaxIterationsShift = 5,
|
727
|
+
SpvLoopControlIterationMultipleShift = 6,
|
728
|
+
SpvLoopControlPeelCountShift = 7,
|
729
|
+
SpvLoopControlPartialCountShift = 8,
|
730
|
+
SpvLoopControlInitiationIntervalINTELShift = 16,
|
731
|
+
SpvLoopControlMaxConcurrencyINTELShift = 17,
|
732
|
+
SpvLoopControlDependencyArrayINTELShift = 18,
|
733
|
+
SpvLoopControlPipelineEnableINTELShift = 19,
|
734
|
+
SpvLoopControlLoopCoalesceINTELShift = 20,
|
735
|
+
SpvLoopControlMaxInterleavingINTELShift = 21,
|
736
|
+
SpvLoopControlSpeculatedIterationsINTELShift = 22,
|
737
|
+
SpvLoopControlNoFusionINTELShift = 23,
|
738
|
+
SpvLoopControlMax = 0x7fffffff,
|
739
|
+
} SpvLoopControlShift;
|
740
|
+
|
741
|
+
typedef enum SpvLoopControlMask_ {
|
742
|
+
SpvLoopControlMaskNone = 0,
|
743
|
+
SpvLoopControlUnrollMask = 0x00000001,
|
744
|
+
SpvLoopControlDontUnrollMask = 0x00000002,
|
745
|
+
SpvLoopControlDependencyInfiniteMask = 0x00000004,
|
746
|
+
SpvLoopControlDependencyLengthMask = 0x00000008,
|
747
|
+
SpvLoopControlMinIterationsMask = 0x00000010,
|
748
|
+
SpvLoopControlMaxIterationsMask = 0x00000020,
|
749
|
+
SpvLoopControlIterationMultipleMask = 0x00000040,
|
750
|
+
SpvLoopControlPeelCountMask = 0x00000080,
|
751
|
+
SpvLoopControlPartialCountMask = 0x00000100,
|
752
|
+
SpvLoopControlInitiationIntervalINTELMask = 0x00010000,
|
753
|
+
SpvLoopControlMaxConcurrencyINTELMask = 0x00020000,
|
754
|
+
SpvLoopControlDependencyArrayINTELMask = 0x00040000,
|
755
|
+
SpvLoopControlPipelineEnableINTELMask = 0x00080000,
|
756
|
+
SpvLoopControlLoopCoalesceINTELMask = 0x00100000,
|
757
|
+
SpvLoopControlMaxInterleavingINTELMask = 0x00200000,
|
758
|
+
SpvLoopControlSpeculatedIterationsINTELMask = 0x00400000,
|
759
|
+
SpvLoopControlNoFusionINTELMask = 0x00800000,
|
760
|
+
} SpvLoopControlMask;
|
761
|
+
|
762
|
+
typedef enum SpvFunctionControlShift_ {
|
763
|
+
SpvFunctionControlInlineShift = 0,
|
764
|
+
SpvFunctionControlDontInlineShift = 1,
|
765
|
+
SpvFunctionControlPureShift = 2,
|
766
|
+
SpvFunctionControlConstShift = 3,
|
767
|
+
SpvFunctionControlOptNoneINTELShift = 16,
|
768
|
+
SpvFunctionControlMax = 0x7fffffff,
|
769
|
+
} SpvFunctionControlShift;
|
770
|
+
|
771
|
+
typedef enum SpvFunctionControlMask_ {
|
772
|
+
SpvFunctionControlMaskNone = 0,
|
773
|
+
SpvFunctionControlInlineMask = 0x00000001,
|
774
|
+
SpvFunctionControlDontInlineMask = 0x00000002,
|
775
|
+
SpvFunctionControlPureMask = 0x00000004,
|
776
|
+
SpvFunctionControlConstMask = 0x00000008,
|
777
|
+
SpvFunctionControlOptNoneINTELMask = 0x00010000,
|
778
|
+
} SpvFunctionControlMask;
|
779
|
+
|
780
|
+
typedef enum SpvMemorySemanticsShift_ {
|
781
|
+
SpvMemorySemanticsAcquireShift = 1,
|
782
|
+
SpvMemorySemanticsReleaseShift = 2,
|
783
|
+
SpvMemorySemanticsAcquireReleaseShift = 3,
|
784
|
+
SpvMemorySemanticsSequentiallyConsistentShift = 4,
|
785
|
+
SpvMemorySemanticsUniformMemoryShift = 6,
|
786
|
+
SpvMemorySemanticsSubgroupMemoryShift = 7,
|
787
|
+
SpvMemorySemanticsWorkgroupMemoryShift = 8,
|
788
|
+
SpvMemorySemanticsCrossWorkgroupMemoryShift = 9,
|
789
|
+
SpvMemorySemanticsAtomicCounterMemoryShift = 10,
|
790
|
+
SpvMemorySemanticsImageMemoryShift = 11,
|
791
|
+
SpvMemorySemanticsOutputMemoryShift = 12,
|
792
|
+
SpvMemorySemanticsOutputMemoryKHRShift = 12,
|
793
|
+
SpvMemorySemanticsMakeAvailableShift = 13,
|
794
|
+
SpvMemorySemanticsMakeAvailableKHRShift = 13,
|
795
|
+
SpvMemorySemanticsMakeVisibleShift = 14,
|
796
|
+
SpvMemorySemanticsMakeVisibleKHRShift = 14,
|
797
|
+
SpvMemorySemanticsVolatileShift = 15,
|
798
|
+
SpvMemorySemanticsMax = 0x7fffffff,
|
799
|
+
} SpvMemorySemanticsShift;
|
800
|
+
|
801
|
+
typedef enum SpvMemorySemanticsMask_ {
|
802
|
+
SpvMemorySemanticsMaskNone = 0,
|
803
|
+
SpvMemorySemanticsAcquireMask = 0x00000002,
|
804
|
+
SpvMemorySemanticsReleaseMask = 0x00000004,
|
805
|
+
SpvMemorySemanticsAcquireReleaseMask = 0x00000008,
|
806
|
+
SpvMemorySemanticsSequentiallyConsistentMask = 0x00000010,
|
807
|
+
SpvMemorySemanticsUniformMemoryMask = 0x00000040,
|
808
|
+
SpvMemorySemanticsSubgroupMemoryMask = 0x00000080,
|
809
|
+
SpvMemorySemanticsWorkgroupMemoryMask = 0x00000100,
|
810
|
+
SpvMemorySemanticsCrossWorkgroupMemoryMask = 0x00000200,
|
811
|
+
SpvMemorySemanticsAtomicCounterMemoryMask = 0x00000400,
|
812
|
+
SpvMemorySemanticsImageMemoryMask = 0x00000800,
|
813
|
+
SpvMemorySemanticsOutputMemoryMask = 0x00001000,
|
814
|
+
SpvMemorySemanticsOutputMemoryKHRMask = 0x00001000,
|
815
|
+
SpvMemorySemanticsMakeAvailableMask = 0x00002000,
|
816
|
+
SpvMemorySemanticsMakeAvailableKHRMask = 0x00002000,
|
817
|
+
SpvMemorySemanticsMakeVisibleMask = 0x00004000,
|
818
|
+
SpvMemorySemanticsMakeVisibleKHRMask = 0x00004000,
|
819
|
+
SpvMemorySemanticsVolatileMask = 0x00008000,
|
820
|
+
} SpvMemorySemanticsMask;
|
821
|
+
|
822
|
+
typedef enum SpvMemoryAccessShift_ {
|
823
|
+
SpvMemoryAccessVolatileShift = 0,
|
824
|
+
SpvMemoryAccessAlignedShift = 1,
|
825
|
+
SpvMemoryAccessNontemporalShift = 2,
|
826
|
+
SpvMemoryAccessMakePointerAvailableShift = 3,
|
827
|
+
SpvMemoryAccessMakePointerAvailableKHRShift = 3,
|
828
|
+
SpvMemoryAccessMakePointerVisibleShift = 4,
|
829
|
+
SpvMemoryAccessMakePointerVisibleKHRShift = 4,
|
830
|
+
SpvMemoryAccessNonPrivatePointerShift = 5,
|
831
|
+
SpvMemoryAccessNonPrivatePointerKHRShift = 5,
|
832
|
+
SpvMemoryAccessAliasScopeINTELMaskShift = 16,
|
833
|
+
SpvMemoryAccessNoAliasINTELMaskShift = 17,
|
834
|
+
SpvMemoryAccessMax = 0x7fffffff,
|
835
|
+
} SpvMemoryAccessShift;
|
836
|
+
|
837
|
+
typedef enum SpvMemoryAccessMask_ {
|
838
|
+
SpvMemoryAccessMaskNone = 0,
|
839
|
+
SpvMemoryAccessVolatileMask = 0x00000001,
|
840
|
+
SpvMemoryAccessAlignedMask = 0x00000002,
|
841
|
+
SpvMemoryAccessNontemporalMask = 0x00000004,
|
842
|
+
SpvMemoryAccessMakePointerAvailableMask = 0x00000008,
|
843
|
+
SpvMemoryAccessMakePointerAvailableKHRMask = 0x00000008,
|
844
|
+
SpvMemoryAccessMakePointerVisibleMask = 0x00000010,
|
845
|
+
SpvMemoryAccessMakePointerVisibleKHRMask = 0x00000010,
|
846
|
+
SpvMemoryAccessNonPrivatePointerMask = 0x00000020,
|
847
|
+
SpvMemoryAccessNonPrivatePointerKHRMask = 0x00000020,
|
848
|
+
SpvMemoryAccessAliasScopeINTELMaskMask = 0x00010000,
|
849
|
+
SpvMemoryAccessNoAliasINTELMaskMask = 0x00020000,
|
850
|
+
} SpvMemoryAccessMask;
|
851
|
+
|
852
|
+
typedef enum SpvScope_ {
|
853
|
+
SpvScopeCrossDevice = 0,
|
854
|
+
SpvScopeDevice = 1,
|
855
|
+
SpvScopeWorkgroup = 2,
|
856
|
+
SpvScopeSubgroup = 3,
|
857
|
+
SpvScopeInvocation = 4,
|
858
|
+
SpvScopeQueueFamily = 5,
|
859
|
+
SpvScopeQueueFamilyKHR = 5,
|
860
|
+
SpvScopeShaderCallKHR = 6,
|
861
|
+
SpvScopeMax = 0x7fffffff,
|
862
|
+
} SpvScope;
|
863
|
+
|
864
|
+
typedef enum SpvGroupOperation_ {
|
865
|
+
SpvGroupOperationReduce = 0,
|
866
|
+
SpvGroupOperationInclusiveScan = 1,
|
867
|
+
SpvGroupOperationExclusiveScan = 2,
|
868
|
+
SpvGroupOperationClusteredReduce = 3,
|
869
|
+
SpvGroupOperationPartitionedReduceNV = 6,
|
870
|
+
SpvGroupOperationPartitionedInclusiveScanNV = 7,
|
871
|
+
SpvGroupOperationPartitionedExclusiveScanNV = 8,
|
872
|
+
SpvGroupOperationMax = 0x7fffffff,
|
873
|
+
} SpvGroupOperation;
|
874
|
+
|
875
|
+
typedef enum SpvKernelEnqueueFlags_ {
|
876
|
+
SpvKernelEnqueueFlagsNoWait = 0,
|
877
|
+
SpvKernelEnqueueFlagsWaitKernel = 1,
|
878
|
+
SpvKernelEnqueueFlagsWaitWorkGroup = 2,
|
879
|
+
SpvKernelEnqueueFlagsMax = 0x7fffffff,
|
880
|
+
} SpvKernelEnqueueFlags;
|
881
|
+
|
882
|
+
typedef enum SpvKernelProfilingInfoShift_ {
|
883
|
+
SpvKernelProfilingInfoCmdExecTimeShift = 0,
|
884
|
+
SpvKernelProfilingInfoMax = 0x7fffffff,
|
885
|
+
} SpvKernelProfilingInfoShift;
|
886
|
+
|
887
|
+
typedef enum SpvKernelProfilingInfoMask_ {
|
888
|
+
SpvKernelProfilingInfoMaskNone = 0,
|
889
|
+
SpvKernelProfilingInfoCmdExecTimeMask = 0x00000001,
|
890
|
+
} SpvKernelProfilingInfoMask;
|
891
|
+
|
892
|
+
typedef enum SpvCapability_ {
|
893
|
+
SpvCapabilityMatrix = 0,
|
894
|
+
SpvCapabilityShader = 1,
|
895
|
+
SpvCapabilityGeometry = 2,
|
896
|
+
SpvCapabilityTessellation = 3,
|
897
|
+
SpvCapabilityAddresses = 4,
|
898
|
+
SpvCapabilityLinkage = 5,
|
899
|
+
SpvCapabilityKernel = 6,
|
900
|
+
SpvCapabilityVector16 = 7,
|
901
|
+
SpvCapabilityFloat16Buffer = 8,
|
902
|
+
SpvCapabilityFloat16 = 9,
|
903
|
+
SpvCapabilityFloat64 = 10,
|
904
|
+
SpvCapabilityInt64 = 11,
|
905
|
+
SpvCapabilityInt64Atomics = 12,
|
906
|
+
SpvCapabilityImageBasic = 13,
|
907
|
+
SpvCapabilityImageReadWrite = 14,
|
908
|
+
SpvCapabilityImageMipmap = 15,
|
909
|
+
SpvCapabilityPipes = 17,
|
910
|
+
SpvCapabilityGroups = 18,
|
911
|
+
SpvCapabilityDeviceEnqueue = 19,
|
912
|
+
SpvCapabilityLiteralSampler = 20,
|
913
|
+
SpvCapabilityAtomicStorage = 21,
|
914
|
+
SpvCapabilityInt16 = 22,
|
915
|
+
SpvCapabilityTessellationPointSize = 23,
|
916
|
+
SpvCapabilityGeometryPointSize = 24,
|
917
|
+
SpvCapabilityImageGatherExtended = 25,
|
918
|
+
SpvCapabilityStorageImageMultisample = 27,
|
919
|
+
SpvCapabilityUniformBufferArrayDynamicIndexing = 28,
|
920
|
+
SpvCapabilitySampledImageArrayDynamicIndexing = 29,
|
921
|
+
SpvCapabilityStorageBufferArrayDynamicIndexing = 30,
|
922
|
+
SpvCapabilityStorageImageArrayDynamicIndexing = 31,
|
923
|
+
SpvCapabilityClipDistance = 32,
|
924
|
+
SpvCapabilityCullDistance = 33,
|
925
|
+
SpvCapabilityImageCubeArray = 34,
|
926
|
+
SpvCapabilitySampleRateShading = 35,
|
927
|
+
SpvCapabilityImageRect = 36,
|
928
|
+
SpvCapabilitySampledRect = 37,
|
929
|
+
SpvCapabilityGenericPointer = 38,
|
930
|
+
SpvCapabilityInt8 = 39,
|
931
|
+
SpvCapabilityInputAttachment = 40,
|
932
|
+
SpvCapabilitySparseResidency = 41,
|
933
|
+
SpvCapabilityMinLod = 42,
|
934
|
+
SpvCapabilitySampled1D = 43,
|
935
|
+
SpvCapabilityImage1D = 44,
|
936
|
+
SpvCapabilitySampledCubeArray = 45,
|
937
|
+
SpvCapabilitySampledBuffer = 46,
|
938
|
+
SpvCapabilityImageBuffer = 47,
|
939
|
+
SpvCapabilityImageMSArray = 48,
|
940
|
+
SpvCapabilityStorageImageExtendedFormats = 49,
|
941
|
+
SpvCapabilityImageQuery = 50,
|
942
|
+
SpvCapabilityDerivativeControl = 51,
|
943
|
+
SpvCapabilityInterpolationFunction = 52,
|
944
|
+
SpvCapabilityTransformFeedback = 53,
|
945
|
+
SpvCapabilityGeometryStreams = 54,
|
946
|
+
SpvCapabilityStorageImageReadWithoutFormat = 55,
|
947
|
+
SpvCapabilityStorageImageWriteWithoutFormat = 56,
|
948
|
+
SpvCapabilityMultiViewport = 57,
|
949
|
+
SpvCapabilitySubgroupDispatch = 58,
|
950
|
+
SpvCapabilityNamedBarrier = 59,
|
951
|
+
SpvCapabilityPipeStorage = 60,
|
952
|
+
SpvCapabilityGroupNonUniform = 61,
|
953
|
+
SpvCapabilityGroupNonUniformVote = 62,
|
954
|
+
SpvCapabilityGroupNonUniformArithmetic = 63,
|
955
|
+
SpvCapabilityGroupNonUniformBallot = 64,
|
956
|
+
SpvCapabilityGroupNonUniformShuffle = 65,
|
957
|
+
SpvCapabilityGroupNonUniformShuffleRelative = 66,
|
958
|
+
SpvCapabilityGroupNonUniformClustered = 67,
|
959
|
+
SpvCapabilityGroupNonUniformQuad = 68,
|
960
|
+
SpvCapabilityShaderLayer = 69,
|
961
|
+
SpvCapabilityShaderViewportIndex = 70,
|
962
|
+
SpvCapabilityUniformDecoration = 71,
|
963
|
+
SpvCapabilityFragmentShadingRateKHR = 4422,
|
964
|
+
SpvCapabilitySubgroupBallotKHR = 4423,
|
965
|
+
SpvCapabilityDrawParameters = 4427,
|
966
|
+
SpvCapabilityWorkgroupMemoryExplicitLayoutKHR = 4428,
|
967
|
+
SpvCapabilityWorkgroupMemoryExplicitLayout8BitAccessKHR = 4429,
|
968
|
+
SpvCapabilityWorkgroupMemoryExplicitLayout16BitAccessKHR = 4430,
|
969
|
+
SpvCapabilitySubgroupVoteKHR = 4431,
|
970
|
+
SpvCapabilityStorageBuffer16BitAccess = 4433,
|
971
|
+
SpvCapabilityStorageUniformBufferBlock16 = 4433,
|
972
|
+
SpvCapabilityStorageUniform16 = 4434,
|
973
|
+
SpvCapabilityUniformAndStorageBuffer16BitAccess = 4434,
|
974
|
+
SpvCapabilityStoragePushConstant16 = 4435,
|
975
|
+
SpvCapabilityStorageInputOutput16 = 4436,
|
976
|
+
SpvCapabilityDeviceGroup = 4437,
|
977
|
+
SpvCapabilityMultiView = 4439,
|
978
|
+
SpvCapabilityVariablePointersStorageBuffer = 4441,
|
979
|
+
SpvCapabilityVariablePointers = 4442,
|
980
|
+
SpvCapabilityAtomicStorageOps = 4445,
|
981
|
+
SpvCapabilitySampleMaskPostDepthCoverage = 4447,
|
982
|
+
SpvCapabilityStorageBuffer8BitAccess = 4448,
|
983
|
+
SpvCapabilityUniformAndStorageBuffer8BitAccess = 4449,
|
984
|
+
SpvCapabilityStoragePushConstant8 = 4450,
|
985
|
+
SpvCapabilityDenormPreserve = 4464,
|
986
|
+
SpvCapabilityDenormFlushToZero = 4465,
|
987
|
+
SpvCapabilitySignedZeroInfNanPreserve = 4466,
|
988
|
+
SpvCapabilityRoundingModeRTE = 4467,
|
989
|
+
SpvCapabilityRoundingModeRTZ = 4468,
|
990
|
+
SpvCapabilityRayQueryProvisionalKHR = 4471,
|
991
|
+
SpvCapabilityRayQueryKHR = 4472,
|
992
|
+
SpvCapabilityRayTraversalPrimitiveCullingKHR = 4478,
|
993
|
+
SpvCapabilityRayTracingKHR = 4479,
|
994
|
+
SpvCapabilityFloat16ImageAMD = 5008,
|
995
|
+
SpvCapabilityImageGatherBiasLodAMD = 5009,
|
996
|
+
SpvCapabilityFragmentMaskAMD = 5010,
|
997
|
+
SpvCapabilityStencilExportEXT = 5013,
|
998
|
+
SpvCapabilityImageReadWriteLodAMD = 5015,
|
999
|
+
SpvCapabilityInt64ImageEXT = 5016,
|
1000
|
+
SpvCapabilityShaderClockKHR = 5055,
|
1001
|
+
SpvCapabilitySampleMaskOverrideCoverageNV = 5249,
|
1002
|
+
SpvCapabilityGeometryShaderPassthroughNV = 5251,
|
1003
|
+
SpvCapabilityShaderViewportIndexLayerEXT = 5254,
|
1004
|
+
SpvCapabilityShaderViewportIndexLayerNV = 5254,
|
1005
|
+
SpvCapabilityShaderViewportMaskNV = 5255,
|
1006
|
+
SpvCapabilityShaderStereoViewNV = 5259,
|
1007
|
+
SpvCapabilityPerViewAttributesNV = 5260,
|
1008
|
+
SpvCapabilityFragmentFullyCoveredEXT = 5265,
|
1009
|
+
SpvCapabilityMeshShadingNV = 5266,
|
1010
|
+
SpvCapabilityImageFootprintNV = 5282,
|
1011
|
+
SpvCapabilityMeshShadingEXT = 5283,
|
1012
|
+
SpvCapabilityFragmentBarycentricKHR = 5284,
|
1013
|
+
SpvCapabilityFragmentBarycentricNV = 5284,
|
1014
|
+
SpvCapabilityComputeDerivativeGroupQuadsNV = 5288,
|
1015
|
+
SpvCapabilityFragmentDensityEXT = 5291,
|
1016
|
+
SpvCapabilityShadingRateNV = 5291,
|
1017
|
+
SpvCapabilityGroupNonUniformPartitionedNV = 5297,
|
1018
|
+
SpvCapabilityShaderNonUniform = 5301,
|
1019
|
+
SpvCapabilityShaderNonUniformEXT = 5301,
|
1020
|
+
SpvCapabilityRuntimeDescriptorArray = 5302,
|
1021
|
+
SpvCapabilityRuntimeDescriptorArrayEXT = 5302,
|
1022
|
+
SpvCapabilityInputAttachmentArrayDynamicIndexing = 5303,
|
1023
|
+
SpvCapabilityInputAttachmentArrayDynamicIndexingEXT = 5303,
|
1024
|
+
SpvCapabilityUniformTexelBufferArrayDynamicIndexing = 5304,
|
1025
|
+
SpvCapabilityUniformTexelBufferArrayDynamicIndexingEXT = 5304,
|
1026
|
+
SpvCapabilityStorageTexelBufferArrayDynamicIndexing = 5305,
|
1027
|
+
SpvCapabilityStorageTexelBufferArrayDynamicIndexingEXT = 5305,
|
1028
|
+
SpvCapabilityUniformBufferArrayNonUniformIndexing = 5306,
|
1029
|
+
SpvCapabilityUniformBufferArrayNonUniformIndexingEXT = 5306,
|
1030
|
+
SpvCapabilitySampledImageArrayNonUniformIndexing = 5307,
|
1031
|
+
SpvCapabilitySampledImageArrayNonUniformIndexingEXT = 5307,
|
1032
|
+
SpvCapabilityStorageBufferArrayNonUniformIndexing = 5308,
|
1033
|
+
SpvCapabilityStorageBufferArrayNonUniformIndexingEXT = 5308,
|
1034
|
+
SpvCapabilityStorageImageArrayNonUniformIndexing = 5309,
|
1035
|
+
SpvCapabilityStorageImageArrayNonUniformIndexingEXT = 5309,
|
1036
|
+
SpvCapabilityInputAttachmentArrayNonUniformIndexing = 5310,
|
1037
|
+
SpvCapabilityInputAttachmentArrayNonUniformIndexingEXT = 5310,
|
1038
|
+
SpvCapabilityUniformTexelBufferArrayNonUniformIndexing = 5311,
|
1039
|
+
SpvCapabilityUniformTexelBufferArrayNonUniformIndexingEXT = 5311,
|
1040
|
+
SpvCapabilityStorageTexelBufferArrayNonUniformIndexing = 5312,
|
1041
|
+
SpvCapabilityStorageTexelBufferArrayNonUniformIndexingEXT = 5312,
|
1042
|
+
SpvCapabilityRayTracingNV = 5340,
|
1043
|
+
SpvCapabilityRayTracingMotionBlurNV = 5341,
|
1044
|
+
SpvCapabilityVulkanMemoryModel = 5345,
|
1045
|
+
SpvCapabilityVulkanMemoryModelKHR = 5345,
|
1046
|
+
SpvCapabilityVulkanMemoryModelDeviceScope = 5346,
|
1047
|
+
SpvCapabilityVulkanMemoryModelDeviceScopeKHR = 5346,
|
1048
|
+
SpvCapabilityPhysicalStorageBufferAddresses = 5347,
|
1049
|
+
SpvCapabilityPhysicalStorageBufferAddressesEXT = 5347,
|
1050
|
+
SpvCapabilityComputeDerivativeGroupLinearNV = 5350,
|
1051
|
+
SpvCapabilityRayTracingProvisionalKHR = 5353,
|
1052
|
+
SpvCapabilityCooperativeMatrixNV = 5357,
|
1053
|
+
SpvCapabilityFragmentShaderSampleInterlockEXT = 5363,
|
1054
|
+
SpvCapabilityFragmentShaderShadingRateInterlockEXT = 5372,
|
1055
|
+
SpvCapabilityShaderSMBuiltinsNV = 5373,
|
1056
|
+
SpvCapabilityFragmentShaderPixelInterlockEXT = 5378,
|
1057
|
+
SpvCapabilityDemoteToHelperInvocation = 5379,
|
1058
|
+
SpvCapabilityDemoteToHelperInvocationEXT = 5379,
|
1059
|
+
SpvCapabilityBindlessTextureNV = 5390,
|
1060
|
+
SpvCapabilitySubgroupShuffleINTEL = 5568,
|
1061
|
+
SpvCapabilitySubgroupBufferBlockIOINTEL = 5569,
|
1062
|
+
SpvCapabilitySubgroupImageBlockIOINTEL = 5570,
|
1063
|
+
SpvCapabilitySubgroupImageMediaBlockIOINTEL = 5579,
|
1064
|
+
SpvCapabilityRoundToInfinityINTEL = 5582,
|
1065
|
+
SpvCapabilityFloatingPointModeINTEL = 5583,
|
1066
|
+
SpvCapabilityIntegerFunctions2INTEL = 5584,
|
1067
|
+
SpvCapabilityFunctionPointersINTEL = 5603,
|
1068
|
+
SpvCapabilityIndirectReferencesINTEL = 5604,
|
1069
|
+
SpvCapabilityAsmINTEL = 5606,
|
1070
|
+
SpvCapabilityAtomicFloat32MinMaxEXT = 5612,
|
1071
|
+
SpvCapabilityAtomicFloat64MinMaxEXT = 5613,
|
1072
|
+
SpvCapabilityAtomicFloat16MinMaxEXT = 5616,
|
1073
|
+
SpvCapabilityVectorComputeINTEL = 5617,
|
1074
|
+
SpvCapabilityVectorAnyINTEL = 5619,
|
1075
|
+
SpvCapabilityExpectAssumeKHR = 5629,
|
1076
|
+
SpvCapabilitySubgroupAvcMotionEstimationINTEL = 5696,
|
1077
|
+
SpvCapabilitySubgroupAvcMotionEstimationIntraINTEL = 5697,
|
1078
|
+
SpvCapabilitySubgroupAvcMotionEstimationChromaINTEL = 5698,
|
1079
|
+
SpvCapabilityVariableLengthArrayINTEL = 5817,
|
1080
|
+
SpvCapabilityFunctionFloatControlINTEL = 5821,
|
1081
|
+
SpvCapabilityFPGAMemoryAttributesINTEL = 5824,
|
1082
|
+
SpvCapabilityFPFastMathModeINTEL = 5837,
|
1083
|
+
SpvCapabilityArbitraryPrecisionIntegersINTEL = 5844,
|
1084
|
+
SpvCapabilityArbitraryPrecisionFloatingPointINTEL = 5845,
|
1085
|
+
SpvCapabilityUnstructuredLoopControlsINTEL = 5886,
|
1086
|
+
SpvCapabilityFPGALoopControlsINTEL = 5888,
|
1087
|
+
SpvCapabilityKernelAttributesINTEL = 5892,
|
1088
|
+
SpvCapabilityFPGAKernelAttributesINTEL = 5897,
|
1089
|
+
SpvCapabilityFPGAMemoryAccessesINTEL = 5898,
|
1090
|
+
SpvCapabilityFPGAClusterAttributesINTEL = 5904,
|
1091
|
+
SpvCapabilityLoopFuseINTEL = 5906,
|
1092
|
+
SpvCapabilityMemoryAccessAliasingINTEL = 5910,
|
1093
|
+
SpvCapabilityFPGABufferLocationINTEL = 5920,
|
1094
|
+
SpvCapabilityArbitraryPrecisionFixedPointINTEL = 5922,
|
1095
|
+
SpvCapabilityUSMStorageClassesINTEL = 5935,
|
1096
|
+
SpvCapabilityIOPipesINTEL = 5943,
|
1097
|
+
SpvCapabilityBlockingPipesINTEL = 5945,
|
1098
|
+
SpvCapabilityFPGARegINTEL = 5948,
|
1099
|
+
SpvCapabilityDotProductInputAll = 6016,
|
1100
|
+
SpvCapabilityDotProductInputAllKHR = 6016,
|
1101
|
+
SpvCapabilityDotProductInput4x8Bit = 6017,
|
1102
|
+
SpvCapabilityDotProductInput4x8BitKHR = 6017,
|
1103
|
+
SpvCapabilityDotProductInput4x8BitPacked = 6018,
|
1104
|
+
SpvCapabilityDotProductInput4x8BitPackedKHR = 6018,
|
1105
|
+
SpvCapabilityDotProduct = 6019,
|
1106
|
+
SpvCapabilityDotProductKHR = 6019,
|
1107
|
+
SpvCapabilityRayCullMaskKHR = 6020,
|
1108
|
+
SpvCapabilityBitInstructions = 6025,
|
1109
|
+
SpvCapabilityGroupNonUniformRotateKHR = 6026,
|
1110
|
+
SpvCapabilityAtomicFloat32AddEXT = 6033,
|
1111
|
+
SpvCapabilityAtomicFloat64AddEXT = 6034,
|
1112
|
+
SpvCapabilityLongConstantCompositeINTEL = 6089,
|
1113
|
+
SpvCapabilityOptNoneINTEL = 6094,
|
1114
|
+
SpvCapabilityAtomicFloat16AddEXT = 6095,
|
1115
|
+
SpvCapabilityDebugInfoModuleINTEL = 6114,
|
1116
|
+
SpvCapabilitySplitBarrierINTEL = 6141,
|
1117
|
+
SpvCapabilityGroupUniformArithmeticKHR = 6400,
|
1118
|
+
SpvCapabilityMax = 0x7fffffff,
|
1119
|
+
} SpvCapability;
|
1120
|
+
|
1121
|
+
typedef enum SpvRayFlagsShift_ {
|
1122
|
+
SpvRayFlagsOpaqueKHRShift = 0,
|
1123
|
+
SpvRayFlagsNoOpaqueKHRShift = 1,
|
1124
|
+
SpvRayFlagsTerminateOnFirstHitKHRShift = 2,
|
1125
|
+
SpvRayFlagsSkipClosestHitShaderKHRShift = 3,
|
1126
|
+
SpvRayFlagsCullBackFacingTrianglesKHRShift = 4,
|
1127
|
+
SpvRayFlagsCullFrontFacingTrianglesKHRShift = 5,
|
1128
|
+
SpvRayFlagsCullOpaqueKHRShift = 6,
|
1129
|
+
SpvRayFlagsCullNoOpaqueKHRShift = 7,
|
1130
|
+
SpvRayFlagsSkipTrianglesKHRShift = 8,
|
1131
|
+
SpvRayFlagsSkipAABBsKHRShift = 9,
|
1132
|
+
SpvRayFlagsMax = 0x7fffffff,
|
1133
|
+
} SpvRayFlagsShift;
|
1134
|
+
|
1135
|
+
typedef enum SpvRayFlagsMask_ {
|
1136
|
+
SpvRayFlagsMaskNone = 0,
|
1137
|
+
SpvRayFlagsOpaqueKHRMask = 0x00000001,
|
1138
|
+
SpvRayFlagsNoOpaqueKHRMask = 0x00000002,
|
1139
|
+
SpvRayFlagsTerminateOnFirstHitKHRMask = 0x00000004,
|
1140
|
+
SpvRayFlagsSkipClosestHitShaderKHRMask = 0x00000008,
|
1141
|
+
SpvRayFlagsCullBackFacingTrianglesKHRMask = 0x00000010,
|
1142
|
+
SpvRayFlagsCullFrontFacingTrianglesKHRMask = 0x00000020,
|
1143
|
+
SpvRayFlagsCullOpaqueKHRMask = 0x00000040,
|
1144
|
+
SpvRayFlagsCullNoOpaqueKHRMask = 0x00000080,
|
1145
|
+
SpvRayFlagsSkipTrianglesKHRMask = 0x00000100,
|
1146
|
+
SpvRayFlagsSkipAABBsKHRMask = 0x00000200,
|
1147
|
+
} SpvRayFlagsMask;
|
1148
|
+
|
1149
|
+
typedef enum SpvRayQueryIntersection_ {
|
1150
|
+
SpvRayQueryIntersectionRayQueryCandidateIntersectionKHR = 0,
|
1151
|
+
SpvRayQueryIntersectionRayQueryCommittedIntersectionKHR = 1,
|
1152
|
+
SpvRayQueryIntersectionMax = 0x7fffffff,
|
1153
|
+
} SpvRayQueryIntersection;
|
1154
|
+
|
1155
|
+
typedef enum SpvRayQueryCommittedIntersectionType_ {
|
1156
|
+
SpvRayQueryCommittedIntersectionTypeRayQueryCommittedIntersectionNoneKHR = 0,
|
1157
|
+
SpvRayQueryCommittedIntersectionTypeRayQueryCommittedIntersectionTriangleKHR = 1,
|
1158
|
+
SpvRayQueryCommittedIntersectionTypeRayQueryCommittedIntersectionGeneratedKHR = 2,
|
1159
|
+
SpvRayQueryCommittedIntersectionTypeMax = 0x7fffffff,
|
1160
|
+
} SpvRayQueryCommittedIntersectionType;
|
1161
|
+
|
1162
|
+
typedef enum SpvRayQueryCandidateIntersectionType_ {
|
1163
|
+
SpvRayQueryCandidateIntersectionTypeRayQueryCandidateIntersectionTriangleKHR = 0,
|
1164
|
+
SpvRayQueryCandidateIntersectionTypeRayQueryCandidateIntersectionAABBKHR = 1,
|
1165
|
+
SpvRayQueryCandidateIntersectionTypeMax = 0x7fffffff,
|
1166
|
+
} SpvRayQueryCandidateIntersectionType;
|
1167
|
+
|
1168
|
+
typedef enum SpvFragmentShadingRateShift_ {
|
1169
|
+
SpvFragmentShadingRateVertical2PixelsShift = 0,
|
1170
|
+
SpvFragmentShadingRateVertical4PixelsShift = 1,
|
1171
|
+
SpvFragmentShadingRateHorizontal2PixelsShift = 2,
|
1172
|
+
SpvFragmentShadingRateHorizontal4PixelsShift = 3,
|
1173
|
+
SpvFragmentShadingRateMax = 0x7fffffff,
|
1174
|
+
} SpvFragmentShadingRateShift;
|
1175
|
+
|
1176
|
+
typedef enum SpvFragmentShadingRateMask_ {
|
1177
|
+
SpvFragmentShadingRateMaskNone = 0,
|
1178
|
+
SpvFragmentShadingRateVertical2PixelsMask = 0x00000001,
|
1179
|
+
SpvFragmentShadingRateVertical4PixelsMask = 0x00000002,
|
1180
|
+
SpvFragmentShadingRateHorizontal2PixelsMask = 0x00000004,
|
1181
|
+
SpvFragmentShadingRateHorizontal4PixelsMask = 0x00000008,
|
1182
|
+
} SpvFragmentShadingRateMask;
|
1183
|
+
|
1184
|
+
typedef enum SpvFPDenormMode_ {
|
1185
|
+
SpvFPDenormModePreserve = 0,
|
1186
|
+
SpvFPDenormModeFlushToZero = 1,
|
1187
|
+
SpvFPDenormModeMax = 0x7fffffff,
|
1188
|
+
} SpvFPDenormMode;
|
1189
|
+
|
1190
|
+
typedef enum SpvFPOperationMode_ {
|
1191
|
+
SpvFPOperationModeIEEE = 0,
|
1192
|
+
SpvFPOperationModeALT = 1,
|
1193
|
+
SpvFPOperationModeMax = 0x7fffffff,
|
1194
|
+
} SpvFPOperationMode;
|
1195
|
+
|
1196
|
+
typedef enum SpvQuantizationModes_ {
|
1197
|
+
SpvQuantizationModesTRN = 0,
|
1198
|
+
SpvQuantizationModesTRN_ZERO = 1,
|
1199
|
+
SpvQuantizationModesRND = 2,
|
1200
|
+
SpvQuantizationModesRND_ZERO = 3,
|
1201
|
+
SpvQuantizationModesRND_INF = 4,
|
1202
|
+
SpvQuantizationModesRND_MIN_INF = 5,
|
1203
|
+
SpvQuantizationModesRND_CONV = 6,
|
1204
|
+
SpvQuantizationModesRND_CONV_ODD = 7,
|
1205
|
+
SpvQuantizationModesMax = 0x7fffffff,
|
1206
|
+
} SpvQuantizationModes;
|
1207
|
+
|
1208
|
+
typedef enum SpvOverflowModes_ {
|
1209
|
+
SpvOverflowModesWRAP = 0,
|
1210
|
+
SpvOverflowModesSAT = 1,
|
1211
|
+
SpvOverflowModesSAT_ZERO = 2,
|
1212
|
+
SpvOverflowModesSAT_SYM = 3,
|
1213
|
+
SpvOverflowModesMax = 0x7fffffff,
|
1214
|
+
} SpvOverflowModes;
|
1215
|
+
|
1216
|
+
typedef enum SpvPackedVectorFormat_ {
|
1217
|
+
SpvPackedVectorFormatPackedVectorFormat4x8Bit = 0,
|
1218
|
+
SpvPackedVectorFormatPackedVectorFormat4x8BitKHR = 0,
|
1219
|
+
SpvPackedVectorFormatMax = 0x7fffffff,
|
1220
|
+
} SpvPackedVectorFormat;
|
1221
|
+
|
1222
|
+
typedef enum SpvOp_ {
|
1223
|
+
SpvOpNop = 0,
|
1224
|
+
SpvOpUndef = 1,
|
1225
|
+
SpvOpSourceContinued = 2,
|
1226
|
+
SpvOpSource = 3,
|
1227
|
+
SpvOpSourceExtension = 4,
|
1228
|
+
SpvOpName = 5,
|
1229
|
+
SpvOpMemberName = 6,
|
1230
|
+
SpvOpString = 7,
|
1231
|
+
SpvOpLine = 8,
|
1232
|
+
SpvOpExtension = 10,
|
1233
|
+
SpvOpExtInstImport = 11,
|
1234
|
+
SpvOpExtInst = 12,
|
1235
|
+
SpvOpMemoryModel = 14,
|
1236
|
+
SpvOpEntryPoint = 15,
|
1237
|
+
SpvOpExecutionMode = 16,
|
1238
|
+
SpvOpCapability = 17,
|
1239
|
+
SpvOpTypeVoid = 19,
|
1240
|
+
SpvOpTypeBool = 20,
|
1241
|
+
SpvOpTypeInt = 21,
|
1242
|
+
SpvOpTypeFloat = 22,
|
1243
|
+
SpvOpTypeVector = 23,
|
1244
|
+
SpvOpTypeMatrix = 24,
|
1245
|
+
SpvOpTypeImage = 25,
|
1246
|
+
SpvOpTypeSampler = 26,
|
1247
|
+
SpvOpTypeSampledImage = 27,
|
1248
|
+
SpvOpTypeArray = 28,
|
1249
|
+
SpvOpTypeRuntimeArray = 29,
|
1250
|
+
SpvOpTypeStruct = 30,
|
1251
|
+
SpvOpTypeOpaque = 31,
|
1252
|
+
SpvOpTypePointer = 32,
|
1253
|
+
SpvOpTypeFunction = 33,
|
1254
|
+
SpvOpTypeEvent = 34,
|
1255
|
+
SpvOpTypeDeviceEvent = 35,
|
1256
|
+
SpvOpTypeReserveId = 36,
|
1257
|
+
SpvOpTypeQueue = 37,
|
1258
|
+
SpvOpTypePipe = 38,
|
1259
|
+
SpvOpTypeForwardPointer = 39,
|
1260
|
+
SpvOpConstantTrue = 41,
|
1261
|
+
SpvOpConstantFalse = 42,
|
1262
|
+
SpvOpConstant = 43,
|
1263
|
+
SpvOpConstantComposite = 44,
|
1264
|
+
SpvOpConstantSampler = 45,
|
1265
|
+
SpvOpConstantNull = 46,
|
1266
|
+
SpvOpSpecConstantTrue = 48,
|
1267
|
+
SpvOpSpecConstantFalse = 49,
|
1268
|
+
SpvOpSpecConstant = 50,
|
1269
|
+
SpvOpSpecConstantComposite = 51,
|
1270
|
+
SpvOpSpecConstantOp = 52,
|
1271
|
+
SpvOpFunction = 54,
|
1272
|
+
SpvOpFunctionParameter = 55,
|
1273
|
+
SpvOpFunctionEnd = 56,
|
1274
|
+
SpvOpFunctionCall = 57,
|
1275
|
+
SpvOpVariable = 59,
|
1276
|
+
SpvOpImageTexelPointer = 60,
|
1277
|
+
SpvOpLoad = 61,
|
1278
|
+
SpvOpStore = 62,
|
1279
|
+
SpvOpCopyMemory = 63,
|
1280
|
+
SpvOpCopyMemorySized = 64,
|
1281
|
+
SpvOpAccessChain = 65,
|
1282
|
+
SpvOpInBoundsAccessChain = 66,
|
1283
|
+
SpvOpPtrAccessChain = 67,
|
1284
|
+
SpvOpArrayLength = 68,
|
1285
|
+
SpvOpGenericPtrMemSemantics = 69,
|
1286
|
+
SpvOpInBoundsPtrAccessChain = 70,
|
1287
|
+
SpvOpDecorate = 71,
|
1288
|
+
SpvOpMemberDecorate = 72,
|
1289
|
+
SpvOpDecorationGroup = 73,
|
1290
|
+
SpvOpGroupDecorate = 74,
|
1291
|
+
SpvOpGroupMemberDecorate = 75,
|
1292
|
+
SpvOpVectorExtractDynamic = 77,
|
1293
|
+
SpvOpVectorInsertDynamic = 78,
|
1294
|
+
SpvOpVectorShuffle = 79,
|
1295
|
+
SpvOpCompositeConstruct = 80,
|
1296
|
+
SpvOpCompositeExtract = 81,
|
1297
|
+
SpvOpCompositeInsert = 82,
|
1298
|
+
SpvOpCopyObject = 83,
|
1299
|
+
SpvOpTranspose = 84,
|
1300
|
+
SpvOpSampledImage = 86,
|
1301
|
+
SpvOpImageSampleImplicitLod = 87,
|
1302
|
+
SpvOpImageSampleExplicitLod = 88,
|
1303
|
+
SpvOpImageSampleDrefImplicitLod = 89,
|
1304
|
+
SpvOpImageSampleDrefExplicitLod = 90,
|
1305
|
+
SpvOpImageSampleProjImplicitLod = 91,
|
1306
|
+
SpvOpImageSampleProjExplicitLod = 92,
|
1307
|
+
SpvOpImageSampleProjDrefImplicitLod = 93,
|
1308
|
+
SpvOpImageSampleProjDrefExplicitLod = 94,
|
1309
|
+
SpvOpImageFetch = 95,
|
1310
|
+
SpvOpImageGather = 96,
|
1311
|
+
SpvOpImageDrefGather = 97,
|
1312
|
+
SpvOpImageRead = 98,
|
1313
|
+
SpvOpImageWrite = 99,
|
1314
|
+
SpvOpImage = 100,
|
1315
|
+
SpvOpImageQueryFormat = 101,
|
1316
|
+
SpvOpImageQueryOrder = 102,
|
1317
|
+
SpvOpImageQuerySizeLod = 103,
|
1318
|
+
SpvOpImageQuerySize = 104,
|
1319
|
+
SpvOpImageQueryLod = 105,
|
1320
|
+
SpvOpImageQueryLevels = 106,
|
1321
|
+
SpvOpImageQuerySamples = 107,
|
1322
|
+
SpvOpConvertFToU = 109,
|
1323
|
+
SpvOpConvertFToS = 110,
|
1324
|
+
SpvOpConvertSToF = 111,
|
1325
|
+
SpvOpConvertUToF = 112,
|
1326
|
+
SpvOpUConvert = 113,
|
1327
|
+
SpvOpSConvert = 114,
|
1328
|
+
SpvOpFConvert = 115,
|
1329
|
+
SpvOpQuantizeToF16 = 116,
|
1330
|
+
SpvOpConvertPtrToU = 117,
|
1331
|
+
SpvOpSatConvertSToU = 118,
|
1332
|
+
SpvOpSatConvertUToS = 119,
|
1333
|
+
SpvOpConvertUToPtr = 120,
|
1334
|
+
SpvOpPtrCastToGeneric = 121,
|
1335
|
+
SpvOpGenericCastToPtr = 122,
|
1336
|
+
SpvOpGenericCastToPtrExplicit = 123,
|
1337
|
+
SpvOpBitcast = 124,
|
1338
|
+
SpvOpSNegate = 126,
|
1339
|
+
SpvOpFNegate = 127,
|
1340
|
+
SpvOpIAdd = 128,
|
1341
|
+
SpvOpFAdd = 129,
|
1342
|
+
SpvOpISub = 130,
|
1343
|
+
SpvOpFSub = 131,
|
1344
|
+
SpvOpIMul = 132,
|
1345
|
+
SpvOpFMul = 133,
|
1346
|
+
SpvOpUDiv = 134,
|
1347
|
+
SpvOpSDiv = 135,
|
1348
|
+
SpvOpFDiv = 136,
|
1349
|
+
SpvOpUMod = 137,
|
1350
|
+
SpvOpSRem = 138,
|
1351
|
+
SpvOpSMod = 139,
|
1352
|
+
SpvOpFRem = 140,
|
1353
|
+
SpvOpFMod = 141,
|
1354
|
+
SpvOpVectorTimesScalar = 142,
|
1355
|
+
SpvOpMatrixTimesScalar = 143,
|
1356
|
+
SpvOpVectorTimesMatrix = 144,
|
1357
|
+
SpvOpMatrixTimesVector = 145,
|
1358
|
+
SpvOpMatrixTimesMatrix = 146,
|
1359
|
+
SpvOpOuterProduct = 147,
|
1360
|
+
SpvOpDot = 148,
|
1361
|
+
SpvOpIAddCarry = 149,
|
1362
|
+
SpvOpISubBorrow = 150,
|
1363
|
+
SpvOpUMulExtended = 151,
|
1364
|
+
SpvOpSMulExtended = 152,
|
1365
|
+
SpvOpAny = 154,
|
1366
|
+
SpvOpAll = 155,
|
1367
|
+
SpvOpIsNan = 156,
|
1368
|
+
SpvOpIsInf = 157,
|
1369
|
+
SpvOpIsFinite = 158,
|
1370
|
+
SpvOpIsNormal = 159,
|
1371
|
+
SpvOpSignBitSet = 160,
|
1372
|
+
SpvOpLessOrGreater = 161,
|
1373
|
+
SpvOpOrdered = 162,
|
1374
|
+
SpvOpUnordered = 163,
|
1375
|
+
SpvOpLogicalEqual = 164,
|
1376
|
+
SpvOpLogicalNotEqual = 165,
|
1377
|
+
SpvOpLogicalOr = 166,
|
1378
|
+
SpvOpLogicalAnd = 167,
|
1379
|
+
SpvOpLogicalNot = 168,
|
1380
|
+
SpvOpSelect = 169,
|
1381
|
+
SpvOpIEqual = 170,
|
1382
|
+
SpvOpINotEqual = 171,
|
1383
|
+
SpvOpUGreaterThan = 172,
|
1384
|
+
SpvOpSGreaterThan = 173,
|
1385
|
+
SpvOpUGreaterThanEqual = 174,
|
1386
|
+
SpvOpSGreaterThanEqual = 175,
|
1387
|
+
SpvOpULessThan = 176,
|
1388
|
+
SpvOpSLessThan = 177,
|
1389
|
+
SpvOpULessThanEqual = 178,
|
1390
|
+
SpvOpSLessThanEqual = 179,
|
1391
|
+
SpvOpFOrdEqual = 180,
|
1392
|
+
SpvOpFUnordEqual = 181,
|
1393
|
+
SpvOpFOrdNotEqual = 182,
|
1394
|
+
SpvOpFUnordNotEqual = 183,
|
1395
|
+
SpvOpFOrdLessThan = 184,
|
1396
|
+
SpvOpFUnordLessThan = 185,
|
1397
|
+
SpvOpFOrdGreaterThan = 186,
|
1398
|
+
SpvOpFUnordGreaterThan = 187,
|
1399
|
+
SpvOpFOrdLessThanEqual = 188,
|
1400
|
+
SpvOpFUnordLessThanEqual = 189,
|
1401
|
+
SpvOpFOrdGreaterThanEqual = 190,
|
1402
|
+
SpvOpFUnordGreaterThanEqual = 191,
|
1403
|
+
SpvOpShiftRightLogical = 194,
|
1404
|
+
SpvOpShiftRightArithmetic = 195,
|
1405
|
+
SpvOpShiftLeftLogical = 196,
|
1406
|
+
SpvOpBitwiseOr = 197,
|
1407
|
+
SpvOpBitwiseXor = 198,
|
1408
|
+
SpvOpBitwiseAnd = 199,
|
1409
|
+
SpvOpNot = 200,
|
1410
|
+
SpvOpBitFieldInsert = 201,
|
1411
|
+
SpvOpBitFieldSExtract = 202,
|
1412
|
+
SpvOpBitFieldUExtract = 203,
|
1413
|
+
SpvOpBitReverse = 204,
|
1414
|
+
SpvOpBitCount = 205,
|
1415
|
+
SpvOpDPdx = 207,
|
1416
|
+
SpvOpDPdy = 208,
|
1417
|
+
SpvOpFwidth = 209,
|
1418
|
+
SpvOpDPdxFine = 210,
|
1419
|
+
SpvOpDPdyFine = 211,
|
1420
|
+
SpvOpFwidthFine = 212,
|
1421
|
+
SpvOpDPdxCoarse = 213,
|
1422
|
+
SpvOpDPdyCoarse = 214,
|
1423
|
+
SpvOpFwidthCoarse = 215,
|
1424
|
+
SpvOpEmitVertex = 218,
|
1425
|
+
SpvOpEndPrimitive = 219,
|
1426
|
+
SpvOpEmitStreamVertex = 220,
|
1427
|
+
SpvOpEndStreamPrimitive = 221,
|
1428
|
+
SpvOpControlBarrier = 224,
|
1429
|
+
SpvOpMemoryBarrier = 225,
|
1430
|
+
SpvOpAtomicLoad = 227,
|
1431
|
+
SpvOpAtomicStore = 228,
|
1432
|
+
SpvOpAtomicExchange = 229,
|
1433
|
+
SpvOpAtomicCompareExchange = 230,
|
1434
|
+
SpvOpAtomicCompareExchangeWeak = 231,
|
1435
|
+
SpvOpAtomicIIncrement = 232,
|
1436
|
+
SpvOpAtomicIDecrement = 233,
|
1437
|
+
SpvOpAtomicIAdd = 234,
|
1438
|
+
SpvOpAtomicISub = 235,
|
1439
|
+
SpvOpAtomicSMin = 236,
|
1440
|
+
SpvOpAtomicUMin = 237,
|
1441
|
+
SpvOpAtomicSMax = 238,
|
1442
|
+
SpvOpAtomicUMax = 239,
|
1443
|
+
SpvOpAtomicAnd = 240,
|
1444
|
+
SpvOpAtomicOr = 241,
|
1445
|
+
SpvOpAtomicXor = 242,
|
1446
|
+
SpvOpPhi = 245,
|
1447
|
+
SpvOpLoopMerge = 246,
|
1448
|
+
SpvOpSelectionMerge = 247,
|
1449
|
+
SpvOpLabel = 248,
|
1450
|
+
SpvOpBranch = 249,
|
1451
|
+
SpvOpBranchConditional = 250,
|
1452
|
+
SpvOpSwitch = 251,
|
1453
|
+
SpvOpKill = 252,
|
1454
|
+
SpvOpReturn = 253,
|
1455
|
+
SpvOpReturnValue = 254,
|
1456
|
+
SpvOpUnreachable = 255,
|
1457
|
+
SpvOpLifetimeStart = 256,
|
1458
|
+
SpvOpLifetimeStop = 257,
|
1459
|
+
SpvOpGroupAsyncCopy = 259,
|
1460
|
+
SpvOpGroupWaitEvents = 260,
|
1461
|
+
SpvOpGroupAll = 261,
|
1462
|
+
SpvOpGroupAny = 262,
|
1463
|
+
SpvOpGroupBroadcast = 263,
|
1464
|
+
SpvOpGroupIAdd = 264,
|
1465
|
+
SpvOpGroupFAdd = 265,
|
1466
|
+
SpvOpGroupFMin = 266,
|
1467
|
+
SpvOpGroupUMin = 267,
|
1468
|
+
SpvOpGroupSMin = 268,
|
1469
|
+
SpvOpGroupFMax = 269,
|
1470
|
+
SpvOpGroupUMax = 270,
|
1471
|
+
SpvOpGroupSMax = 271,
|
1472
|
+
SpvOpReadPipe = 274,
|
1473
|
+
SpvOpWritePipe = 275,
|
1474
|
+
SpvOpReservedReadPipe = 276,
|
1475
|
+
SpvOpReservedWritePipe = 277,
|
1476
|
+
SpvOpReserveReadPipePackets = 278,
|
1477
|
+
SpvOpReserveWritePipePackets = 279,
|
1478
|
+
SpvOpCommitReadPipe = 280,
|
1479
|
+
SpvOpCommitWritePipe = 281,
|
1480
|
+
SpvOpIsValidReserveId = 282,
|
1481
|
+
SpvOpGetNumPipePackets = 283,
|
1482
|
+
SpvOpGetMaxPipePackets = 284,
|
1483
|
+
SpvOpGroupReserveReadPipePackets = 285,
|
1484
|
+
SpvOpGroupReserveWritePipePackets = 286,
|
1485
|
+
SpvOpGroupCommitReadPipe = 287,
|
1486
|
+
SpvOpGroupCommitWritePipe = 288,
|
1487
|
+
SpvOpEnqueueMarker = 291,
|
1488
|
+
SpvOpEnqueueKernel = 292,
|
1489
|
+
SpvOpGetKernelNDrangeSubGroupCount = 293,
|
1490
|
+
SpvOpGetKernelNDrangeMaxSubGroupSize = 294,
|
1491
|
+
SpvOpGetKernelWorkGroupSize = 295,
|
1492
|
+
SpvOpGetKernelPreferredWorkGroupSizeMultiple = 296,
|
1493
|
+
SpvOpRetainEvent = 297,
|
1494
|
+
SpvOpReleaseEvent = 298,
|
1495
|
+
SpvOpCreateUserEvent = 299,
|
1496
|
+
SpvOpIsValidEvent = 300,
|
1497
|
+
SpvOpSetUserEventStatus = 301,
|
1498
|
+
SpvOpCaptureEventProfilingInfo = 302,
|
1499
|
+
SpvOpGetDefaultQueue = 303,
|
1500
|
+
SpvOpBuildNDRange = 304,
|
1501
|
+
SpvOpImageSparseSampleImplicitLod = 305,
|
1502
|
+
SpvOpImageSparseSampleExplicitLod = 306,
|
1503
|
+
SpvOpImageSparseSampleDrefImplicitLod = 307,
|
1504
|
+
SpvOpImageSparseSampleDrefExplicitLod = 308,
|
1505
|
+
SpvOpImageSparseSampleProjImplicitLod = 309,
|
1506
|
+
SpvOpImageSparseSampleProjExplicitLod = 310,
|
1507
|
+
SpvOpImageSparseSampleProjDrefImplicitLod = 311,
|
1508
|
+
SpvOpImageSparseSampleProjDrefExplicitLod = 312,
|
1509
|
+
SpvOpImageSparseFetch = 313,
|
1510
|
+
SpvOpImageSparseGather = 314,
|
1511
|
+
SpvOpImageSparseDrefGather = 315,
|
1512
|
+
SpvOpImageSparseTexelsResident = 316,
|
1513
|
+
SpvOpNoLine = 317,
|
1514
|
+
SpvOpAtomicFlagTestAndSet = 318,
|
1515
|
+
SpvOpAtomicFlagClear = 319,
|
1516
|
+
SpvOpImageSparseRead = 320,
|
1517
|
+
SpvOpSizeOf = 321,
|
1518
|
+
SpvOpTypePipeStorage = 322,
|
1519
|
+
SpvOpConstantPipeStorage = 323,
|
1520
|
+
SpvOpCreatePipeFromPipeStorage = 324,
|
1521
|
+
SpvOpGetKernelLocalSizeForSubgroupCount = 325,
|
1522
|
+
SpvOpGetKernelMaxNumSubgroups = 326,
|
1523
|
+
SpvOpTypeNamedBarrier = 327,
|
1524
|
+
SpvOpNamedBarrierInitialize = 328,
|
1525
|
+
SpvOpMemoryNamedBarrier = 329,
|
1526
|
+
SpvOpModuleProcessed = 330,
|
1527
|
+
SpvOpExecutionModeId = 331,
|
1528
|
+
SpvOpDecorateId = 332,
|
1529
|
+
SpvOpGroupNonUniformElect = 333,
|
1530
|
+
SpvOpGroupNonUniformAll = 334,
|
1531
|
+
SpvOpGroupNonUniformAny = 335,
|
1532
|
+
SpvOpGroupNonUniformAllEqual = 336,
|
1533
|
+
SpvOpGroupNonUniformBroadcast = 337,
|
1534
|
+
SpvOpGroupNonUniformBroadcastFirst = 338,
|
1535
|
+
SpvOpGroupNonUniformBallot = 339,
|
1536
|
+
SpvOpGroupNonUniformInverseBallot = 340,
|
1537
|
+
SpvOpGroupNonUniformBallotBitExtract = 341,
|
1538
|
+
SpvOpGroupNonUniformBallotBitCount = 342,
|
1539
|
+
SpvOpGroupNonUniformBallotFindLSB = 343,
|
1540
|
+
SpvOpGroupNonUniformBallotFindMSB = 344,
|
1541
|
+
SpvOpGroupNonUniformShuffle = 345,
|
1542
|
+
SpvOpGroupNonUniformShuffleXor = 346,
|
1543
|
+
SpvOpGroupNonUniformShuffleUp = 347,
|
1544
|
+
SpvOpGroupNonUniformShuffleDown = 348,
|
1545
|
+
SpvOpGroupNonUniformIAdd = 349,
|
1546
|
+
SpvOpGroupNonUniformFAdd = 350,
|
1547
|
+
SpvOpGroupNonUniformIMul = 351,
|
1548
|
+
SpvOpGroupNonUniformFMul = 352,
|
1549
|
+
SpvOpGroupNonUniformSMin = 353,
|
1550
|
+
SpvOpGroupNonUniformUMin = 354,
|
1551
|
+
SpvOpGroupNonUniformFMin = 355,
|
1552
|
+
SpvOpGroupNonUniformSMax = 356,
|
1553
|
+
SpvOpGroupNonUniformUMax = 357,
|
1554
|
+
SpvOpGroupNonUniformFMax = 358,
|
1555
|
+
SpvOpGroupNonUniformBitwiseAnd = 359,
|
1556
|
+
SpvOpGroupNonUniformBitwiseOr = 360,
|
1557
|
+
SpvOpGroupNonUniformBitwiseXor = 361,
|
1558
|
+
SpvOpGroupNonUniformLogicalAnd = 362,
|
1559
|
+
SpvOpGroupNonUniformLogicalOr = 363,
|
1560
|
+
SpvOpGroupNonUniformLogicalXor = 364,
|
1561
|
+
SpvOpGroupNonUniformQuadBroadcast = 365,
|
1562
|
+
SpvOpGroupNonUniformQuadSwap = 366,
|
1563
|
+
SpvOpCopyLogical = 400,
|
1564
|
+
SpvOpPtrEqual = 401,
|
1565
|
+
SpvOpPtrNotEqual = 402,
|
1566
|
+
SpvOpPtrDiff = 403,
|
1567
|
+
SpvOpTerminateInvocation = 4416,
|
1568
|
+
SpvOpSubgroupBallotKHR = 4421,
|
1569
|
+
SpvOpSubgroupFirstInvocationKHR = 4422,
|
1570
|
+
SpvOpSubgroupAllKHR = 4428,
|
1571
|
+
SpvOpSubgroupAnyKHR = 4429,
|
1572
|
+
SpvOpSubgroupAllEqualKHR = 4430,
|
1573
|
+
SpvOpGroupNonUniformRotateKHR = 4431,
|
1574
|
+
SpvOpSubgroupReadInvocationKHR = 4432,
|
1575
|
+
SpvOpTraceRayKHR = 4445,
|
1576
|
+
SpvOpExecuteCallableKHR = 4446,
|
1577
|
+
SpvOpConvertUToAccelerationStructureKHR = 4447,
|
1578
|
+
SpvOpIgnoreIntersectionKHR = 4448,
|
1579
|
+
SpvOpTerminateRayKHR = 4449,
|
1580
|
+
SpvOpSDot = 4450,
|
1581
|
+
SpvOpSDotKHR = 4450,
|
1582
|
+
SpvOpUDot = 4451,
|
1583
|
+
SpvOpUDotKHR = 4451,
|
1584
|
+
SpvOpSUDot = 4452,
|
1585
|
+
SpvOpSUDotKHR = 4452,
|
1586
|
+
SpvOpSDotAccSat = 4453,
|
1587
|
+
SpvOpSDotAccSatKHR = 4453,
|
1588
|
+
SpvOpUDotAccSat = 4454,
|
1589
|
+
SpvOpUDotAccSatKHR = 4454,
|
1590
|
+
SpvOpSUDotAccSat = 4455,
|
1591
|
+
SpvOpSUDotAccSatKHR = 4455,
|
1592
|
+
SpvOpTypeRayQueryKHR = 4472,
|
1593
|
+
SpvOpRayQueryInitializeKHR = 4473,
|
1594
|
+
SpvOpRayQueryTerminateKHR = 4474,
|
1595
|
+
SpvOpRayQueryGenerateIntersectionKHR = 4475,
|
1596
|
+
SpvOpRayQueryConfirmIntersectionKHR = 4476,
|
1597
|
+
SpvOpRayQueryProceedKHR = 4477,
|
1598
|
+
SpvOpRayQueryGetIntersectionTypeKHR = 4479,
|
1599
|
+
SpvOpGroupIAddNonUniformAMD = 5000,
|
1600
|
+
SpvOpGroupFAddNonUniformAMD = 5001,
|
1601
|
+
SpvOpGroupFMinNonUniformAMD = 5002,
|
1602
|
+
SpvOpGroupUMinNonUniformAMD = 5003,
|
1603
|
+
SpvOpGroupSMinNonUniformAMD = 5004,
|
1604
|
+
SpvOpGroupFMaxNonUniformAMD = 5005,
|
1605
|
+
SpvOpGroupUMaxNonUniformAMD = 5006,
|
1606
|
+
SpvOpGroupSMaxNonUniformAMD = 5007,
|
1607
|
+
SpvOpFragmentMaskFetchAMD = 5011,
|
1608
|
+
SpvOpFragmentFetchAMD = 5012,
|
1609
|
+
SpvOpReadClockKHR = 5056,
|
1610
|
+
SpvOpImageSampleFootprintNV = 5283,
|
1611
|
+
SpvOpEmitMeshTasksEXT = 5294,
|
1612
|
+
SpvOpSetMeshOutputsEXT = 5295,
|
1613
|
+
SpvOpGroupNonUniformPartitionNV = 5296,
|
1614
|
+
SpvOpWritePackedPrimitiveIndices4x8NV = 5299,
|
1615
|
+
SpvOpReportIntersectionKHR = 5334,
|
1616
|
+
SpvOpReportIntersectionNV = 5334,
|
1617
|
+
SpvOpIgnoreIntersectionNV = 5335,
|
1618
|
+
SpvOpTerminateRayNV = 5336,
|
1619
|
+
SpvOpTraceNV = 5337,
|
1620
|
+
SpvOpTraceMotionNV = 5338,
|
1621
|
+
SpvOpTraceRayMotionNV = 5339,
|
1622
|
+
SpvOpTypeAccelerationStructureKHR = 5341,
|
1623
|
+
SpvOpTypeAccelerationStructureNV = 5341,
|
1624
|
+
SpvOpExecuteCallableNV = 5344,
|
1625
|
+
SpvOpTypeCooperativeMatrixNV = 5358,
|
1626
|
+
SpvOpCooperativeMatrixLoadNV = 5359,
|
1627
|
+
SpvOpCooperativeMatrixStoreNV = 5360,
|
1628
|
+
SpvOpCooperativeMatrixMulAddNV = 5361,
|
1629
|
+
SpvOpCooperativeMatrixLengthNV = 5362,
|
1630
|
+
SpvOpBeginInvocationInterlockEXT = 5364,
|
1631
|
+
SpvOpEndInvocationInterlockEXT = 5365,
|
1632
|
+
SpvOpDemoteToHelperInvocation = 5380,
|
1633
|
+
SpvOpDemoteToHelperInvocationEXT = 5380,
|
1634
|
+
SpvOpIsHelperInvocationEXT = 5381,
|
1635
|
+
SpvOpConvertUToImageNV = 5391,
|
1636
|
+
SpvOpConvertUToSamplerNV = 5392,
|
1637
|
+
SpvOpConvertImageToUNV = 5393,
|
1638
|
+
SpvOpConvertSamplerToUNV = 5394,
|
1639
|
+
SpvOpConvertUToSampledImageNV = 5395,
|
1640
|
+
SpvOpConvertSampledImageToUNV = 5396,
|
1641
|
+
SpvOpSamplerImageAddressingModeNV = 5397,
|
1642
|
+
SpvOpSubgroupShuffleINTEL = 5571,
|
1643
|
+
SpvOpSubgroupShuffleDownINTEL = 5572,
|
1644
|
+
SpvOpSubgroupShuffleUpINTEL = 5573,
|
1645
|
+
SpvOpSubgroupShuffleXorINTEL = 5574,
|
1646
|
+
SpvOpSubgroupBlockReadINTEL = 5575,
|
1647
|
+
SpvOpSubgroupBlockWriteINTEL = 5576,
|
1648
|
+
SpvOpSubgroupImageBlockReadINTEL = 5577,
|
1649
|
+
SpvOpSubgroupImageBlockWriteINTEL = 5578,
|
1650
|
+
SpvOpSubgroupImageMediaBlockReadINTEL = 5580,
|
1651
|
+
SpvOpSubgroupImageMediaBlockWriteINTEL = 5581,
|
1652
|
+
SpvOpUCountLeadingZerosINTEL = 5585,
|
1653
|
+
SpvOpUCountTrailingZerosINTEL = 5586,
|
1654
|
+
SpvOpAbsISubINTEL = 5587,
|
1655
|
+
SpvOpAbsUSubINTEL = 5588,
|
1656
|
+
SpvOpIAddSatINTEL = 5589,
|
1657
|
+
SpvOpUAddSatINTEL = 5590,
|
1658
|
+
SpvOpIAverageINTEL = 5591,
|
1659
|
+
SpvOpUAverageINTEL = 5592,
|
1660
|
+
SpvOpIAverageRoundedINTEL = 5593,
|
1661
|
+
SpvOpUAverageRoundedINTEL = 5594,
|
1662
|
+
SpvOpISubSatINTEL = 5595,
|
1663
|
+
SpvOpUSubSatINTEL = 5596,
|
1664
|
+
SpvOpIMul32x16INTEL = 5597,
|
1665
|
+
SpvOpUMul32x16INTEL = 5598,
|
1666
|
+
SpvOpConstantFunctionPointerINTEL = 5600,
|
1667
|
+
SpvOpFunctionPointerCallINTEL = 5601,
|
1668
|
+
SpvOpAsmTargetINTEL = 5609,
|
1669
|
+
SpvOpAsmINTEL = 5610,
|
1670
|
+
SpvOpAsmCallINTEL = 5611,
|
1671
|
+
SpvOpAtomicFMinEXT = 5614,
|
1672
|
+
SpvOpAtomicFMaxEXT = 5615,
|
1673
|
+
SpvOpAssumeTrueKHR = 5630,
|
1674
|
+
SpvOpExpectKHR = 5631,
|
1675
|
+
SpvOpDecorateString = 5632,
|
1676
|
+
SpvOpDecorateStringGOOGLE = 5632,
|
1677
|
+
SpvOpMemberDecorateString = 5633,
|
1678
|
+
SpvOpMemberDecorateStringGOOGLE = 5633,
|
1679
|
+
SpvOpVmeImageINTEL = 5699,
|
1680
|
+
SpvOpTypeVmeImageINTEL = 5700,
|
1681
|
+
SpvOpTypeAvcImePayloadINTEL = 5701,
|
1682
|
+
SpvOpTypeAvcRefPayloadINTEL = 5702,
|
1683
|
+
SpvOpTypeAvcSicPayloadINTEL = 5703,
|
1684
|
+
SpvOpTypeAvcMcePayloadINTEL = 5704,
|
1685
|
+
SpvOpTypeAvcMceResultINTEL = 5705,
|
1686
|
+
SpvOpTypeAvcImeResultINTEL = 5706,
|
1687
|
+
SpvOpTypeAvcImeResultSingleReferenceStreamoutINTEL = 5707,
|
1688
|
+
SpvOpTypeAvcImeResultDualReferenceStreamoutINTEL = 5708,
|
1689
|
+
SpvOpTypeAvcImeSingleReferenceStreaminINTEL = 5709,
|
1690
|
+
SpvOpTypeAvcImeDualReferenceStreaminINTEL = 5710,
|
1691
|
+
SpvOpTypeAvcRefResultINTEL = 5711,
|
1692
|
+
SpvOpTypeAvcSicResultINTEL = 5712,
|
1693
|
+
SpvOpSubgroupAvcMceGetDefaultInterBaseMultiReferencePenaltyINTEL = 5713,
|
1694
|
+
SpvOpSubgroupAvcMceSetInterBaseMultiReferencePenaltyINTEL = 5714,
|
1695
|
+
SpvOpSubgroupAvcMceGetDefaultInterShapePenaltyINTEL = 5715,
|
1696
|
+
SpvOpSubgroupAvcMceSetInterShapePenaltyINTEL = 5716,
|
1697
|
+
SpvOpSubgroupAvcMceGetDefaultInterDirectionPenaltyINTEL = 5717,
|
1698
|
+
SpvOpSubgroupAvcMceSetInterDirectionPenaltyINTEL = 5718,
|
1699
|
+
SpvOpSubgroupAvcMceGetDefaultIntraLumaShapePenaltyINTEL = 5719,
|
1700
|
+
SpvOpSubgroupAvcMceGetDefaultInterMotionVectorCostTableINTEL = 5720,
|
1701
|
+
SpvOpSubgroupAvcMceGetDefaultHighPenaltyCostTableINTEL = 5721,
|
1702
|
+
SpvOpSubgroupAvcMceGetDefaultMediumPenaltyCostTableINTEL = 5722,
|
1703
|
+
SpvOpSubgroupAvcMceGetDefaultLowPenaltyCostTableINTEL = 5723,
|
1704
|
+
SpvOpSubgroupAvcMceSetMotionVectorCostFunctionINTEL = 5724,
|
1705
|
+
SpvOpSubgroupAvcMceGetDefaultIntraLumaModePenaltyINTEL = 5725,
|
1706
|
+
SpvOpSubgroupAvcMceGetDefaultNonDcLumaIntraPenaltyINTEL = 5726,
|
1707
|
+
SpvOpSubgroupAvcMceGetDefaultIntraChromaModeBasePenaltyINTEL = 5727,
|
1708
|
+
SpvOpSubgroupAvcMceSetAcOnlyHaarINTEL = 5728,
|
1709
|
+
SpvOpSubgroupAvcMceSetSourceInterlacedFieldPolarityINTEL = 5729,
|
1710
|
+
SpvOpSubgroupAvcMceSetSingleReferenceInterlacedFieldPolarityINTEL = 5730,
|
1711
|
+
SpvOpSubgroupAvcMceSetDualReferenceInterlacedFieldPolaritiesINTEL = 5731,
|
1712
|
+
SpvOpSubgroupAvcMceConvertToImePayloadINTEL = 5732,
|
1713
|
+
SpvOpSubgroupAvcMceConvertToImeResultINTEL = 5733,
|
1714
|
+
SpvOpSubgroupAvcMceConvertToRefPayloadINTEL = 5734,
|
1715
|
+
SpvOpSubgroupAvcMceConvertToRefResultINTEL = 5735,
|
1716
|
+
SpvOpSubgroupAvcMceConvertToSicPayloadINTEL = 5736,
|
1717
|
+
SpvOpSubgroupAvcMceConvertToSicResultINTEL = 5737,
|
1718
|
+
SpvOpSubgroupAvcMceGetMotionVectorsINTEL = 5738,
|
1719
|
+
SpvOpSubgroupAvcMceGetInterDistortionsINTEL = 5739,
|
1720
|
+
SpvOpSubgroupAvcMceGetBestInterDistortionsINTEL = 5740,
|
1721
|
+
SpvOpSubgroupAvcMceGetInterMajorShapeINTEL = 5741,
|
1722
|
+
SpvOpSubgroupAvcMceGetInterMinorShapeINTEL = 5742,
|
1723
|
+
SpvOpSubgroupAvcMceGetInterDirectionsINTEL = 5743,
|
1724
|
+
SpvOpSubgroupAvcMceGetInterMotionVectorCountINTEL = 5744,
|
1725
|
+
SpvOpSubgroupAvcMceGetInterReferenceIdsINTEL = 5745,
|
1726
|
+
SpvOpSubgroupAvcMceGetInterReferenceInterlacedFieldPolaritiesINTEL = 5746,
|
1727
|
+
SpvOpSubgroupAvcImeInitializeINTEL = 5747,
|
1728
|
+
SpvOpSubgroupAvcImeSetSingleReferenceINTEL = 5748,
|
1729
|
+
SpvOpSubgroupAvcImeSetDualReferenceINTEL = 5749,
|
1730
|
+
SpvOpSubgroupAvcImeRefWindowSizeINTEL = 5750,
|
1731
|
+
SpvOpSubgroupAvcImeAdjustRefOffsetINTEL = 5751,
|
1732
|
+
SpvOpSubgroupAvcImeConvertToMcePayloadINTEL = 5752,
|
1733
|
+
SpvOpSubgroupAvcImeSetMaxMotionVectorCountINTEL = 5753,
|
1734
|
+
SpvOpSubgroupAvcImeSetUnidirectionalMixDisableINTEL = 5754,
|
1735
|
+
SpvOpSubgroupAvcImeSetEarlySearchTerminationThresholdINTEL = 5755,
|
1736
|
+
SpvOpSubgroupAvcImeSetWeightedSadINTEL = 5756,
|
1737
|
+
SpvOpSubgroupAvcImeEvaluateWithSingleReferenceINTEL = 5757,
|
1738
|
+
SpvOpSubgroupAvcImeEvaluateWithDualReferenceINTEL = 5758,
|
1739
|
+
SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreaminINTEL = 5759,
|
1740
|
+
SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreaminINTEL = 5760,
|
1741
|
+
SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreamoutINTEL = 5761,
|
1742
|
+
SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreamoutINTEL = 5762,
|
1743
|
+
SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreaminoutINTEL = 5763,
|
1744
|
+
SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreaminoutINTEL = 5764,
|
1745
|
+
SpvOpSubgroupAvcImeConvertToMceResultINTEL = 5765,
|
1746
|
+
SpvOpSubgroupAvcImeGetSingleReferenceStreaminINTEL = 5766,
|
1747
|
+
SpvOpSubgroupAvcImeGetDualReferenceStreaminINTEL = 5767,
|
1748
|
+
SpvOpSubgroupAvcImeStripSingleReferenceStreamoutINTEL = 5768,
|
1749
|
+
SpvOpSubgroupAvcImeStripDualReferenceStreamoutINTEL = 5769,
|
1750
|
+
SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeMotionVectorsINTEL = 5770,
|
1751
|
+
SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeDistortionsINTEL = 5771,
|
1752
|
+
SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeReferenceIdsINTEL = 5772,
|
1753
|
+
SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeMotionVectorsINTEL = 5773,
|
1754
|
+
SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeDistortionsINTEL = 5774,
|
1755
|
+
SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeReferenceIdsINTEL = 5775,
|
1756
|
+
SpvOpSubgroupAvcImeGetBorderReachedINTEL = 5776,
|
1757
|
+
SpvOpSubgroupAvcImeGetTruncatedSearchIndicationINTEL = 5777,
|
1758
|
+
SpvOpSubgroupAvcImeGetUnidirectionalEarlySearchTerminationINTEL = 5778,
|
1759
|
+
SpvOpSubgroupAvcImeGetWeightingPatternMinimumMotionVectorINTEL = 5779,
|
1760
|
+
SpvOpSubgroupAvcImeGetWeightingPatternMinimumDistortionINTEL = 5780,
|
1761
|
+
SpvOpSubgroupAvcFmeInitializeINTEL = 5781,
|
1762
|
+
SpvOpSubgroupAvcBmeInitializeINTEL = 5782,
|
1763
|
+
SpvOpSubgroupAvcRefConvertToMcePayloadINTEL = 5783,
|
1764
|
+
SpvOpSubgroupAvcRefSetBidirectionalMixDisableINTEL = 5784,
|
1765
|
+
SpvOpSubgroupAvcRefSetBilinearFilterEnableINTEL = 5785,
|
1766
|
+
SpvOpSubgroupAvcRefEvaluateWithSingleReferenceINTEL = 5786,
|
1767
|
+
SpvOpSubgroupAvcRefEvaluateWithDualReferenceINTEL = 5787,
|
1768
|
+
SpvOpSubgroupAvcRefEvaluateWithMultiReferenceINTEL = 5788,
|
1769
|
+
SpvOpSubgroupAvcRefEvaluateWithMultiReferenceInterlacedINTEL = 5789,
|
1770
|
+
SpvOpSubgroupAvcRefConvertToMceResultINTEL = 5790,
|
1771
|
+
SpvOpSubgroupAvcSicInitializeINTEL = 5791,
|
1772
|
+
SpvOpSubgroupAvcSicConfigureSkcINTEL = 5792,
|
1773
|
+
SpvOpSubgroupAvcSicConfigureIpeLumaINTEL = 5793,
|
1774
|
+
SpvOpSubgroupAvcSicConfigureIpeLumaChromaINTEL = 5794,
|
1775
|
+
SpvOpSubgroupAvcSicGetMotionVectorMaskINTEL = 5795,
|
1776
|
+
SpvOpSubgroupAvcSicConvertToMcePayloadINTEL = 5796,
|
1777
|
+
SpvOpSubgroupAvcSicSetIntraLumaShapePenaltyINTEL = 5797,
|
1778
|
+
SpvOpSubgroupAvcSicSetIntraLumaModeCostFunctionINTEL = 5798,
|
1779
|
+
SpvOpSubgroupAvcSicSetIntraChromaModeCostFunctionINTEL = 5799,
|
1780
|
+
SpvOpSubgroupAvcSicSetBilinearFilterEnableINTEL = 5800,
|
1781
|
+
SpvOpSubgroupAvcSicSetSkcForwardTransformEnableINTEL = 5801,
|
1782
|
+
SpvOpSubgroupAvcSicSetBlockBasedRawSkipSadINTEL = 5802,
|
1783
|
+
SpvOpSubgroupAvcSicEvaluateIpeINTEL = 5803,
|
1784
|
+
SpvOpSubgroupAvcSicEvaluateWithSingleReferenceINTEL = 5804,
|
1785
|
+
SpvOpSubgroupAvcSicEvaluateWithDualReferenceINTEL = 5805,
|
1786
|
+
SpvOpSubgroupAvcSicEvaluateWithMultiReferenceINTEL = 5806,
|
1787
|
+
SpvOpSubgroupAvcSicEvaluateWithMultiReferenceInterlacedINTEL = 5807,
|
1788
|
+
SpvOpSubgroupAvcSicConvertToMceResultINTEL = 5808,
|
1789
|
+
SpvOpSubgroupAvcSicGetIpeLumaShapeINTEL = 5809,
|
1790
|
+
SpvOpSubgroupAvcSicGetBestIpeLumaDistortionINTEL = 5810,
|
1791
|
+
SpvOpSubgroupAvcSicGetBestIpeChromaDistortionINTEL = 5811,
|
1792
|
+
SpvOpSubgroupAvcSicGetPackedIpeLumaModesINTEL = 5812,
|
1793
|
+
SpvOpSubgroupAvcSicGetIpeChromaModeINTEL = 5813,
|
1794
|
+
SpvOpSubgroupAvcSicGetPackedSkcLumaCountThresholdINTEL = 5814,
|
1795
|
+
SpvOpSubgroupAvcSicGetPackedSkcLumaSumThresholdINTEL = 5815,
|
1796
|
+
SpvOpSubgroupAvcSicGetInterRawSadsINTEL = 5816,
|
1797
|
+
SpvOpVariableLengthArrayINTEL = 5818,
|
1798
|
+
SpvOpSaveMemoryINTEL = 5819,
|
1799
|
+
SpvOpRestoreMemoryINTEL = 5820,
|
1800
|
+
SpvOpArbitraryFloatSinCosPiINTEL = 5840,
|
1801
|
+
SpvOpArbitraryFloatCastINTEL = 5841,
|
1802
|
+
SpvOpArbitraryFloatCastFromIntINTEL = 5842,
|
1803
|
+
SpvOpArbitraryFloatCastToIntINTEL = 5843,
|
1804
|
+
SpvOpArbitraryFloatAddINTEL = 5846,
|
1805
|
+
SpvOpArbitraryFloatSubINTEL = 5847,
|
1806
|
+
SpvOpArbitraryFloatMulINTEL = 5848,
|
1807
|
+
SpvOpArbitraryFloatDivINTEL = 5849,
|
1808
|
+
SpvOpArbitraryFloatGTINTEL = 5850,
|
1809
|
+
SpvOpArbitraryFloatGEINTEL = 5851,
|
1810
|
+
SpvOpArbitraryFloatLTINTEL = 5852,
|
1811
|
+
SpvOpArbitraryFloatLEINTEL = 5853,
|
1812
|
+
SpvOpArbitraryFloatEQINTEL = 5854,
|
1813
|
+
SpvOpArbitraryFloatRecipINTEL = 5855,
|
1814
|
+
SpvOpArbitraryFloatRSqrtINTEL = 5856,
|
1815
|
+
SpvOpArbitraryFloatCbrtINTEL = 5857,
|
1816
|
+
SpvOpArbitraryFloatHypotINTEL = 5858,
|
1817
|
+
SpvOpArbitraryFloatSqrtINTEL = 5859,
|
1818
|
+
SpvOpArbitraryFloatLogINTEL = 5860,
|
1819
|
+
SpvOpArbitraryFloatLog2INTEL = 5861,
|
1820
|
+
SpvOpArbitraryFloatLog10INTEL = 5862,
|
1821
|
+
SpvOpArbitraryFloatLog1pINTEL = 5863,
|
1822
|
+
SpvOpArbitraryFloatExpINTEL = 5864,
|
1823
|
+
SpvOpArbitraryFloatExp2INTEL = 5865,
|
1824
|
+
SpvOpArbitraryFloatExp10INTEL = 5866,
|
1825
|
+
SpvOpArbitraryFloatExpm1INTEL = 5867,
|
1826
|
+
SpvOpArbitraryFloatSinINTEL = 5868,
|
1827
|
+
SpvOpArbitraryFloatCosINTEL = 5869,
|
1828
|
+
SpvOpArbitraryFloatSinCosINTEL = 5870,
|
1829
|
+
SpvOpArbitraryFloatSinPiINTEL = 5871,
|
1830
|
+
SpvOpArbitraryFloatCosPiINTEL = 5872,
|
1831
|
+
SpvOpArbitraryFloatASinINTEL = 5873,
|
1832
|
+
SpvOpArbitraryFloatASinPiINTEL = 5874,
|
1833
|
+
SpvOpArbitraryFloatACosINTEL = 5875,
|
1834
|
+
SpvOpArbitraryFloatACosPiINTEL = 5876,
|
1835
|
+
SpvOpArbitraryFloatATanINTEL = 5877,
|
1836
|
+
SpvOpArbitraryFloatATanPiINTEL = 5878,
|
1837
|
+
SpvOpArbitraryFloatATan2INTEL = 5879,
|
1838
|
+
SpvOpArbitraryFloatPowINTEL = 5880,
|
1839
|
+
SpvOpArbitraryFloatPowRINTEL = 5881,
|
1840
|
+
SpvOpArbitraryFloatPowNINTEL = 5882,
|
1841
|
+
SpvOpLoopControlINTEL = 5887,
|
1842
|
+
SpvOpAliasDomainDeclINTEL = 5911,
|
1843
|
+
SpvOpAliasScopeDeclINTEL = 5912,
|
1844
|
+
SpvOpAliasScopeListDeclINTEL = 5913,
|
1845
|
+
SpvOpFixedSqrtINTEL = 5923,
|
1846
|
+
SpvOpFixedRecipINTEL = 5924,
|
1847
|
+
SpvOpFixedRsqrtINTEL = 5925,
|
1848
|
+
SpvOpFixedSinINTEL = 5926,
|
1849
|
+
SpvOpFixedCosINTEL = 5927,
|
1850
|
+
SpvOpFixedSinCosINTEL = 5928,
|
1851
|
+
SpvOpFixedSinPiINTEL = 5929,
|
1852
|
+
SpvOpFixedCosPiINTEL = 5930,
|
1853
|
+
SpvOpFixedSinCosPiINTEL = 5931,
|
1854
|
+
SpvOpFixedLogINTEL = 5932,
|
1855
|
+
SpvOpFixedExpINTEL = 5933,
|
1856
|
+
SpvOpPtrCastToCrossWorkgroupINTEL = 5934,
|
1857
|
+
SpvOpCrossWorkgroupCastToPtrINTEL = 5938,
|
1858
|
+
SpvOpReadPipeBlockingINTEL = 5946,
|
1859
|
+
SpvOpWritePipeBlockingINTEL = 5947,
|
1860
|
+
SpvOpFPGARegINTEL = 5949,
|
1861
|
+
SpvOpRayQueryGetRayTMinKHR = 6016,
|
1862
|
+
SpvOpRayQueryGetRayFlagsKHR = 6017,
|
1863
|
+
SpvOpRayQueryGetIntersectionTKHR = 6018,
|
1864
|
+
SpvOpRayQueryGetIntersectionInstanceCustomIndexKHR = 6019,
|
1865
|
+
SpvOpRayQueryGetIntersectionInstanceIdKHR = 6020,
|
1866
|
+
SpvOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffsetKHR = 6021,
|
1867
|
+
SpvOpRayQueryGetIntersectionGeometryIndexKHR = 6022,
|
1868
|
+
SpvOpRayQueryGetIntersectionPrimitiveIndexKHR = 6023,
|
1869
|
+
SpvOpRayQueryGetIntersectionBarycentricsKHR = 6024,
|
1870
|
+
SpvOpRayQueryGetIntersectionFrontFaceKHR = 6025,
|
1871
|
+
SpvOpRayQueryGetIntersectionCandidateAABBOpaqueKHR = 6026,
|
1872
|
+
SpvOpRayQueryGetIntersectionObjectRayDirectionKHR = 6027,
|
1873
|
+
SpvOpRayQueryGetIntersectionObjectRayOriginKHR = 6028,
|
1874
|
+
SpvOpRayQueryGetWorldRayDirectionKHR = 6029,
|
1875
|
+
SpvOpRayQueryGetWorldRayOriginKHR = 6030,
|
1876
|
+
SpvOpRayQueryGetIntersectionObjectToWorldKHR = 6031,
|
1877
|
+
SpvOpRayQueryGetIntersectionWorldToObjectKHR = 6032,
|
1878
|
+
SpvOpAtomicFAddEXT = 6035,
|
1879
|
+
SpvOpTypeBufferSurfaceINTEL = 6086,
|
1880
|
+
SpvOpTypeStructContinuedINTEL = 6090,
|
1881
|
+
SpvOpConstantCompositeContinuedINTEL = 6091,
|
1882
|
+
SpvOpSpecConstantCompositeContinuedINTEL = 6092,
|
1883
|
+
SpvOpControlBarrierArriveINTEL = 6142,
|
1884
|
+
SpvOpControlBarrierWaitINTEL = 6143,
|
1885
|
+
SpvOpGroupIMulKHR = 6401,
|
1886
|
+
SpvOpGroupFMulKHR = 6402,
|
1887
|
+
SpvOpGroupBitwiseAndKHR = 6403,
|
1888
|
+
SpvOpGroupBitwiseOrKHR = 6404,
|
1889
|
+
SpvOpGroupBitwiseXorKHR = 6405,
|
1890
|
+
SpvOpGroupLogicalAndKHR = 6406,
|
1891
|
+
SpvOpGroupLogicalOrKHR = 6407,
|
1892
|
+
SpvOpGroupLogicalXorKHR = 6408,
|
1893
|
+
SpvOpMax = 0x7fffffff,
|
1894
|
+
} SpvOp;
|
1895
|
+
|
1896
|
+
#ifdef SPV_ENABLE_UTILITY_CODE
|
1897
|
+
#ifndef __cplusplus
|
1898
|
+
#include <stdbool.h>
|
1899
|
+
#endif
|
1900
|
+
inline void SpvHasResultAndType(SpvOp opcode, bool *hasResult, bool *hasResultType) {
|
1901
|
+
*hasResult = *hasResultType = false;
|
1902
|
+
switch (opcode) {
|
1903
|
+
default: /* unknown opcode */ break;
|
1904
|
+
case SpvOpNop: *hasResult = false; *hasResultType = false; break;
|
1905
|
+
case SpvOpUndef: *hasResult = true; *hasResultType = true; break;
|
1906
|
+
case SpvOpSourceContinued: *hasResult = false; *hasResultType = false; break;
|
1907
|
+
case SpvOpSource: *hasResult = false; *hasResultType = false; break;
|
1908
|
+
case SpvOpSourceExtension: *hasResult = false; *hasResultType = false; break;
|
1909
|
+
case SpvOpName: *hasResult = false; *hasResultType = false; break;
|
1910
|
+
case SpvOpMemberName: *hasResult = false; *hasResultType = false; break;
|
1911
|
+
case SpvOpString: *hasResult = true; *hasResultType = false; break;
|
1912
|
+
case SpvOpLine: *hasResult = false; *hasResultType = false; break;
|
1913
|
+
case SpvOpExtension: *hasResult = false; *hasResultType = false; break;
|
1914
|
+
case SpvOpExtInstImport: *hasResult = true; *hasResultType = false; break;
|
1915
|
+
case SpvOpExtInst: *hasResult = true; *hasResultType = true; break;
|
1916
|
+
case SpvOpMemoryModel: *hasResult = false; *hasResultType = false; break;
|
1917
|
+
case SpvOpEntryPoint: *hasResult = false; *hasResultType = false; break;
|
1918
|
+
case SpvOpExecutionMode: *hasResult = false; *hasResultType = false; break;
|
1919
|
+
case SpvOpCapability: *hasResult = false; *hasResultType = false; break;
|
1920
|
+
case SpvOpTypeVoid: *hasResult = true; *hasResultType = false; break;
|
1921
|
+
case SpvOpTypeBool: *hasResult = true; *hasResultType = false; break;
|
1922
|
+
case SpvOpTypeInt: *hasResult = true; *hasResultType = false; break;
|
1923
|
+
case SpvOpTypeFloat: *hasResult = true; *hasResultType = false; break;
|
1924
|
+
case SpvOpTypeVector: *hasResult = true; *hasResultType = false; break;
|
1925
|
+
case SpvOpTypeMatrix: *hasResult = true; *hasResultType = false; break;
|
1926
|
+
case SpvOpTypeImage: *hasResult = true; *hasResultType = false; break;
|
1927
|
+
case SpvOpTypeSampler: *hasResult = true; *hasResultType = false; break;
|
1928
|
+
case SpvOpTypeSampledImage: *hasResult = true; *hasResultType = false; break;
|
1929
|
+
case SpvOpTypeArray: *hasResult = true; *hasResultType = false; break;
|
1930
|
+
case SpvOpTypeRuntimeArray: *hasResult = true; *hasResultType = false; break;
|
1931
|
+
case SpvOpTypeStruct: *hasResult = true; *hasResultType = false; break;
|
1932
|
+
case SpvOpTypeOpaque: *hasResult = true; *hasResultType = false; break;
|
1933
|
+
case SpvOpTypePointer: *hasResult = true; *hasResultType = false; break;
|
1934
|
+
case SpvOpTypeFunction: *hasResult = true; *hasResultType = false; break;
|
1935
|
+
case SpvOpTypeEvent: *hasResult = true; *hasResultType = false; break;
|
1936
|
+
case SpvOpTypeDeviceEvent: *hasResult = true; *hasResultType = false; break;
|
1937
|
+
case SpvOpTypeReserveId: *hasResult = true; *hasResultType = false; break;
|
1938
|
+
case SpvOpTypeQueue: *hasResult = true; *hasResultType = false; break;
|
1939
|
+
case SpvOpTypePipe: *hasResult = true; *hasResultType = false; break;
|
1940
|
+
case SpvOpTypeForwardPointer: *hasResult = false; *hasResultType = false; break;
|
1941
|
+
case SpvOpConstantTrue: *hasResult = true; *hasResultType = true; break;
|
1942
|
+
case SpvOpConstantFalse: *hasResult = true; *hasResultType = true; break;
|
1943
|
+
case SpvOpConstant: *hasResult = true; *hasResultType = true; break;
|
1944
|
+
case SpvOpConstantComposite: *hasResult = true; *hasResultType = true; break;
|
1945
|
+
case SpvOpConstantSampler: *hasResult = true; *hasResultType = true; break;
|
1946
|
+
case SpvOpConstantNull: *hasResult = true; *hasResultType = true; break;
|
1947
|
+
case SpvOpSpecConstantTrue: *hasResult = true; *hasResultType = true; break;
|
1948
|
+
case SpvOpSpecConstantFalse: *hasResult = true; *hasResultType = true; break;
|
1949
|
+
case SpvOpSpecConstant: *hasResult = true; *hasResultType = true; break;
|
1950
|
+
case SpvOpSpecConstantComposite: *hasResult = true; *hasResultType = true; break;
|
1951
|
+
case SpvOpSpecConstantOp: *hasResult = true; *hasResultType = true; break;
|
1952
|
+
case SpvOpFunction: *hasResult = true; *hasResultType = true; break;
|
1953
|
+
case SpvOpFunctionParameter: *hasResult = true; *hasResultType = true; break;
|
1954
|
+
case SpvOpFunctionEnd: *hasResult = false; *hasResultType = false; break;
|
1955
|
+
case SpvOpFunctionCall: *hasResult = true; *hasResultType = true; break;
|
1956
|
+
case SpvOpVariable: *hasResult = true; *hasResultType = true; break;
|
1957
|
+
case SpvOpImageTexelPointer: *hasResult = true; *hasResultType = true; break;
|
1958
|
+
case SpvOpLoad: *hasResult = true; *hasResultType = true; break;
|
1959
|
+
case SpvOpStore: *hasResult = false; *hasResultType = false; break;
|
1960
|
+
case SpvOpCopyMemory: *hasResult = false; *hasResultType = false; break;
|
1961
|
+
case SpvOpCopyMemorySized: *hasResult = false; *hasResultType = false; break;
|
1962
|
+
case SpvOpAccessChain: *hasResult = true; *hasResultType = true; break;
|
1963
|
+
case SpvOpInBoundsAccessChain: *hasResult = true; *hasResultType = true; break;
|
1964
|
+
case SpvOpPtrAccessChain: *hasResult = true; *hasResultType = true; break;
|
1965
|
+
case SpvOpArrayLength: *hasResult = true; *hasResultType = true; break;
|
1966
|
+
case SpvOpGenericPtrMemSemantics: *hasResult = true; *hasResultType = true; break;
|
1967
|
+
case SpvOpInBoundsPtrAccessChain: *hasResult = true; *hasResultType = true; break;
|
1968
|
+
case SpvOpDecorate: *hasResult = false; *hasResultType = false; break;
|
1969
|
+
case SpvOpMemberDecorate: *hasResult = false; *hasResultType = false; break;
|
1970
|
+
case SpvOpDecorationGroup: *hasResult = true; *hasResultType = false; break;
|
1971
|
+
case SpvOpGroupDecorate: *hasResult = false; *hasResultType = false; break;
|
1972
|
+
case SpvOpGroupMemberDecorate: *hasResult = false; *hasResultType = false; break;
|
1973
|
+
case SpvOpVectorExtractDynamic: *hasResult = true; *hasResultType = true; break;
|
1974
|
+
case SpvOpVectorInsertDynamic: *hasResult = true; *hasResultType = true; break;
|
1975
|
+
case SpvOpVectorShuffle: *hasResult = true; *hasResultType = true; break;
|
1976
|
+
case SpvOpCompositeConstruct: *hasResult = true; *hasResultType = true; break;
|
1977
|
+
case SpvOpCompositeExtract: *hasResult = true; *hasResultType = true; break;
|
1978
|
+
case SpvOpCompositeInsert: *hasResult = true; *hasResultType = true; break;
|
1979
|
+
case SpvOpCopyObject: *hasResult = true; *hasResultType = true; break;
|
1980
|
+
case SpvOpTranspose: *hasResult = true; *hasResultType = true; break;
|
1981
|
+
case SpvOpSampledImage: *hasResult = true; *hasResultType = true; break;
|
1982
|
+
case SpvOpImageSampleImplicitLod: *hasResult = true; *hasResultType = true; break;
|
1983
|
+
case SpvOpImageSampleExplicitLod: *hasResult = true; *hasResultType = true; break;
|
1984
|
+
case SpvOpImageSampleDrefImplicitLod: *hasResult = true; *hasResultType = true; break;
|
1985
|
+
case SpvOpImageSampleDrefExplicitLod: *hasResult = true; *hasResultType = true; break;
|
1986
|
+
case SpvOpImageSampleProjImplicitLod: *hasResult = true; *hasResultType = true; break;
|
1987
|
+
case SpvOpImageSampleProjExplicitLod: *hasResult = true; *hasResultType = true; break;
|
1988
|
+
case SpvOpImageSampleProjDrefImplicitLod: *hasResult = true; *hasResultType = true; break;
|
1989
|
+
case SpvOpImageSampleProjDrefExplicitLod: *hasResult = true; *hasResultType = true; break;
|
1990
|
+
case SpvOpImageFetch: *hasResult = true; *hasResultType = true; break;
|
1991
|
+
case SpvOpImageGather: *hasResult = true; *hasResultType = true; break;
|
1992
|
+
case SpvOpImageDrefGather: *hasResult = true; *hasResultType = true; break;
|
1993
|
+
case SpvOpImageRead: *hasResult = true; *hasResultType = true; break;
|
1994
|
+
case SpvOpImageWrite: *hasResult = false; *hasResultType = false; break;
|
1995
|
+
case SpvOpImage: *hasResult = true; *hasResultType = true; break;
|
1996
|
+
case SpvOpImageQueryFormat: *hasResult = true; *hasResultType = true; break;
|
1997
|
+
case SpvOpImageQueryOrder: *hasResult = true; *hasResultType = true; break;
|
1998
|
+
case SpvOpImageQuerySizeLod: *hasResult = true; *hasResultType = true; break;
|
1999
|
+
case SpvOpImageQuerySize: *hasResult = true; *hasResultType = true; break;
|
2000
|
+
case SpvOpImageQueryLod: *hasResult = true; *hasResultType = true; break;
|
2001
|
+
case SpvOpImageQueryLevels: *hasResult = true; *hasResultType = true; break;
|
2002
|
+
case SpvOpImageQuerySamples: *hasResult = true; *hasResultType = true; break;
|
2003
|
+
case SpvOpConvertFToU: *hasResult = true; *hasResultType = true; break;
|
2004
|
+
case SpvOpConvertFToS: *hasResult = true; *hasResultType = true; break;
|
2005
|
+
case SpvOpConvertSToF: *hasResult = true; *hasResultType = true; break;
|
2006
|
+
case SpvOpConvertUToF: *hasResult = true; *hasResultType = true; break;
|
2007
|
+
case SpvOpUConvert: *hasResult = true; *hasResultType = true; break;
|
2008
|
+
case SpvOpSConvert: *hasResult = true; *hasResultType = true; break;
|
2009
|
+
case SpvOpFConvert: *hasResult = true; *hasResultType = true; break;
|
2010
|
+
case SpvOpQuantizeToF16: *hasResult = true; *hasResultType = true; break;
|
2011
|
+
case SpvOpConvertPtrToU: *hasResult = true; *hasResultType = true; break;
|
2012
|
+
case SpvOpSatConvertSToU: *hasResult = true; *hasResultType = true; break;
|
2013
|
+
case SpvOpSatConvertUToS: *hasResult = true; *hasResultType = true; break;
|
2014
|
+
case SpvOpConvertUToPtr: *hasResult = true; *hasResultType = true; break;
|
2015
|
+
case SpvOpPtrCastToGeneric: *hasResult = true; *hasResultType = true; break;
|
2016
|
+
case SpvOpGenericCastToPtr: *hasResult = true; *hasResultType = true; break;
|
2017
|
+
case SpvOpGenericCastToPtrExplicit: *hasResult = true; *hasResultType = true; break;
|
2018
|
+
case SpvOpBitcast: *hasResult = true; *hasResultType = true; break;
|
2019
|
+
case SpvOpSNegate: *hasResult = true; *hasResultType = true; break;
|
2020
|
+
case SpvOpFNegate: *hasResult = true; *hasResultType = true; break;
|
2021
|
+
case SpvOpIAdd: *hasResult = true; *hasResultType = true; break;
|
2022
|
+
case SpvOpFAdd: *hasResult = true; *hasResultType = true; break;
|
2023
|
+
case SpvOpISub: *hasResult = true; *hasResultType = true; break;
|
2024
|
+
case SpvOpFSub: *hasResult = true; *hasResultType = true; break;
|
2025
|
+
case SpvOpIMul: *hasResult = true; *hasResultType = true; break;
|
2026
|
+
case SpvOpFMul: *hasResult = true; *hasResultType = true; break;
|
2027
|
+
case SpvOpUDiv: *hasResult = true; *hasResultType = true; break;
|
2028
|
+
case SpvOpSDiv: *hasResult = true; *hasResultType = true; break;
|
2029
|
+
case SpvOpFDiv: *hasResult = true; *hasResultType = true; break;
|
2030
|
+
case SpvOpUMod: *hasResult = true; *hasResultType = true; break;
|
2031
|
+
case SpvOpSRem: *hasResult = true; *hasResultType = true; break;
|
2032
|
+
case SpvOpSMod: *hasResult = true; *hasResultType = true; break;
|
2033
|
+
case SpvOpFRem: *hasResult = true; *hasResultType = true; break;
|
2034
|
+
case SpvOpFMod: *hasResult = true; *hasResultType = true; break;
|
2035
|
+
case SpvOpVectorTimesScalar: *hasResult = true; *hasResultType = true; break;
|
2036
|
+
case SpvOpMatrixTimesScalar: *hasResult = true; *hasResultType = true; break;
|
2037
|
+
case SpvOpVectorTimesMatrix: *hasResult = true; *hasResultType = true; break;
|
2038
|
+
case SpvOpMatrixTimesVector: *hasResult = true; *hasResultType = true; break;
|
2039
|
+
case SpvOpMatrixTimesMatrix: *hasResult = true; *hasResultType = true; break;
|
2040
|
+
case SpvOpOuterProduct: *hasResult = true; *hasResultType = true; break;
|
2041
|
+
case SpvOpDot: *hasResult = true; *hasResultType = true; break;
|
2042
|
+
case SpvOpIAddCarry: *hasResult = true; *hasResultType = true; break;
|
2043
|
+
case SpvOpISubBorrow: *hasResult = true; *hasResultType = true; break;
|
2044
|
+
case SpvOpUMulExtended: *hasResult = true; *hasResultType = true; break;
|
2045
|
+
case SpvOpSMulExtended: *hasResult = true; *hasResultType = true; break;
|
2046
|
+
case SpvOpAny: *hasResult = true; *hasResultType = true; break;
|
2047
|
+
case SpvOpAll: *hasResult = true; *hasResultType = true; break;
|
2048
|
+
case SpvOpIsNan: *hasResult = true; *hasResultType = true; break;
|
2049
|
+
case SpvOpIsInf: *hasResult = true; *hasResultType = true; break;
|
2050
|
+
case SpvOpIsFinite: *hasResult = true; *hasResultType = true; break;
|
2051
|
+
case SpvOpIsNormal: *hasResult = true; *hasResultType = true; break;
|
2052
|
+
case SpvOpSignBitSet: *hasResult = true; *hasResultType = true; break;
|
2053
|
+
case SpvOpLessOrGreater: *hasResult = true; *hasResultType = true; break;
|
2054
|
+
case SpvOpOrdered: *hasResult = true; *hasResultType = true; break;
|
2055
|
+
case SpvOpUnordered: *hasResult = true; *hasResultType = true; break;
|
2056
|
+
case SpvOpLogicalEqual: *hasResult = true; *hasResultType = true; break;
|
2057
|
+
case SpvOpLogicalNotEqual: *hasResult = true; *hasResultType = true; break;
|
2058
|
+
case SpvOpLogicalOr: *hasResult = true; *hasResultType = true; break;
|
2059
|
+
case SpvOpLogicalAnd: *hasResult = true; *hasResultType = true; break;
|
2060
|
+
case SpvOpLogicalNot: *hasResult = true; *hasResultType = true; break;
|
2061
|
+
case SpvOpSelect: *hasResult = true; *hasResultType = true; break;
|
2062
|
+
case SpvOpIEqual: *hasResult = true; *hasResultType = true; break;
|
2063
|
+
case SpvOpINotEqual: *hasResult = true; *hasResultType = true; break;
|
2064
|
+
case SpvOpUGreaterThan: *hasResult = true; *hasResultType = true; break;
|
2065
|
+
case SpvOpSGreaterThan: *hasResult = true; *hasResultType = true; break;
|
2066
|
+
case SpvOpUGreaterThanEqual: *hasResult = true; *hasResultType = true; break;
|
2067
|
+
case SpvOpSGreaterThanEqual: *hasResult = true; *hasResultType = true; break;
|
2068
|
+
case SpvOpULessThan: *hasResult = true; *hasResultType = true; break;
|
2069
|
+
case SpvOpSLessThan: *hasResult = true; *hasResultType = true; break;
|
2070
|
+
case SpvOpULessThanEqual: *hasResult = true; *hasResultType = true; break;
|
2071
|
+
case SpvOpSLessThanEqual: *hasResult = true; *hasResultType = true; break;
|
2072
|
+
case SpvOpFOrdEqual: *hasResult = true; *hasResultType = true; break;
|
2073
|
+
case SpvOpFUnordEqual: *hasResult = true; *hasResultType = true; break;
|
2074
|
+
case SpvOpFOrdNotEqual: *hasResult = true; *hasResultType = true; break;
|
2075
|
+
case SpvOpFUnordNotEqual: *hasResult = true; *hasResultType = true; break;
|
2076
|
+
case SpvOpFOrdLessThan: *hasResult = true; *hasResultType = true; break;
|
2077
|
+
case SpvOpFUnordLessThan: *hasResult = true; *hasResultType = true; break;
|
2078
|
+
case SpvOpFOrdGreaterThan: *hasResult = true; *hasResultType = true; break;
|
2079
|
+
case SpvOpFUnordGreaterThan: *hasResult = true; *hasResultType = true; break;
|
2080
|
+
case SpvOpFOrdLessThanEqual: *hasResult = true; *hasResultType = true; break;
|
2081
|
+
case SpvOpFUnordLessThanEqual: *hasResult = true; *hasResultType = true; break;
|
2082
|
+
case SpvOpFOrdGreaterThanEqual: *hasResult = true; *hasResultType = true; break;
|
2083
|
+
case SpvOpFUnordGreaterThanEqual: *hasResult = true; *hasResultType = true; break;
|
2084
|
+
case SpvOpShiftRightLogical: *hasResult = true; *hasResultType = true; break;
|
2085
|
+
case SpvOpShiftRightArithmetic: *hasResult = true; *hasResultType = true; break;
|
2086
|
+
case SpvOpShiftLeftLogical: *hasResult = true; *hasResultType = true; break;
|
2087
|
+
case SpvOpBitwiseOr: *hasResult = true; *hasResultType = true; break;
|
2088
|
+
case SpvOpBitwiseXor: *hasResult = true; *hasResultType = true; break;
|
2089
|
+
case SpvOpBitwiseAnd: *hasResult = true; *hasResultType = true; break;
|
2090
|
+
case SpvOpNot: *hasResult = true; *hasResultType = true; break;
|
2091
|
+
case SpvOpBitFieldInsert: *hasResult = true; *hasResultType = true; break;
|
2092
|
+
case SpvOpBitFieldSExtract: *hasResult = true; *hasResultType = true; break;
|
2093
|
+
case SpvOpBitFieldUExtract: *hasResult = true; *hasResultType = true; break;
|
2094
|
+
case SpvOpBitReverse: *hasResult = true; *hasResultType = true; break;
|
2095
|
+
case SpvOpBitCount: *hasResult = true; *hasResultType = true; break;
|
2096
|
+
case SpvOpDPdx: *hasResult = true; *hasResultType = true; break;
|
2097
|
+
case SpvOpDPdy: *hasResult = true; *hasResultType = true; break;
|
2098
|
+
case SpvOpFwidth: *hasResult = true; *hasResultType = true; break;
|
2099
|
+
case SpvOpDPdxFine: *hasResult = true; *hasResultType = true; break;
|
2100
|
+
case SpvOpDPdyFine: *hasResult = true; *hasResultType = true; break;
|
2101
|
+
case SpvOpFwidthFine: *hasResult = true; *hasResultType = true; break;
|
2102
|
+
case SpvOpDPdxCoarse: *hasResult = true; *hasResultType = true; break;
|
2103
|
+
case SpvOpDPdyCoarse: *hasResult = true; *hasResultType = true; break;
|
2104
|
+
case SpvOpFwidthCoarse: *hasResult = true; *hasResultType = true; break;
|
2105
|
+
case SpvOpEmitVertex: *hasResult = false; *hasResultType = false; break;
|
2106
|
+
case SpvOpEndPrimitive: *hasResult = false; *hasResultType = false; break;
|
2107
|
+
case SpvOpEmitStreamVertex: *hasResult = false; *hasResultType = false; break;
|
2108
|
+
case SpvOpEndStreamPrimitive: *hasResult = false; *hasResultType = false; break;
|
2109
|
+
case SpvOpControlBarrier: *hasResult = false; *hasResultType = false; break;
|
2110
|
+
case SpvOpMemoryBarrier: *hasResult = false; *hasResultType = false; break;
|
2111
|
+
case SpvOpAtomicLoad: *hasResult = true; *hasResultType = true; break;
|
2112
|
+
case SpvOpAtomicStore: *hasResult = false; *hasResultType = false; break;
|
2113
|
+
case SpvOpAtomicExchange: *hasResult = true; *hasResultType = true; break;
|
2114
|
+
case SpvOpAtomicCompareExchange: *hasResult = true; *hasResultType = true; break;
|
2115
|
+
case SpvOpAtomicCompareExchangeWeak: *hasResult = true; *hasResultType = true; break;
|
2116
|
+
case SpvOpAtomicIIncrement: *hasResult = true; *hasResultType = true; break;
|
2117
|
+
case SpvOpAtomicIDecrement: *hasResult = true; *hasResultType = true; break;
|
2118
|
+
case SpvOpAtomicIAdd: *hasResult = true; *hasResultType = true; break;
|
2119
|
+
case SpvOpAtomicISub: *hasResult = true; *hasResultType = true; break;
|
2120
|
+
case SpvOpAtomicSMin: *hasResult = true; *hasResultType = true; break;
|
2121
|
+
case SpvOpAtomicUMin: *hasResult = true; *hasResultType = true; break;
|
2122
|
+
case SpvOpAtomicSMax: *hasResult = true; *hasResultType = true; break;
|
2123
|
+
case SpvOpAtomicUMax: *hasResult = true; *hasResultType = true; break;
|
2124
|
+
case SpvOpAtomicAnd: *hasResult = true; *hasResultType = true; break;
|
2125
|
+
case SpvOpAtomicOr: *hasResult = true; *hasResultType = true; break;
|
2126
|
+
case SpvOpAtomicXor: *hasResult = true; *hasResultType = true; break;
|
2127
|
+
case SpvOpPhi: *hasResult = true; *hasResultType = true; break;
|
2128
|
+
case SpvOpLoopMerge: *hasResult = false; *hasResultType = false; break;
|
2129
|
+
case SpvOpSelectionMerge: *hasResult = false; *hasResultType = false; break;
|
2130
|
+
case SpvOpLabel: *hasResult = true; *hasResultType = false; break;
|
2131
|
+
case SpvOpBranch: *hasResult = false; *hasResultType = false; break;
|
2132
|
+
case SpvOpBranchConditional: *hasResult = false; *hasResultType = false; break;
|
2133
|
+
case SpvOpSwitch: *hasResult = false; *hasResultType = false; break;
|
2134
|
+
case SpvOpKill: *hasResult = false; *hasResultType = false; break;
|
2135
|
+
case SpvOpReturn: *hasResult = false; *hasResultType = false; break;
|
2136
|
+
case SpvOpReturnValue: *hasResult = false; *hasResultType = false; break;
|
2137
|
+
case SpvOpUnreachable: *hasResult = false; *hasResultType = false; break;
|
2138
|
+
case SpvOpLifetimeStart: *hasResult = false; *hasResultType = false; break;
|
2139
|
+
case SpvOpLifetimeStop: *hasResult = false; *hasResultType = false; break;
|
2140
|
+
case SpvOpGroupAsyncCopy: *hasResult = true; *hasResultType = true; break;
|
2141
|
+
case SpvOpGroupWaitEvents: *hasResult = false; *hasResultType = false; break;
|
2142
|
+
case SpvOpGroupAll: *hasResult = true; *hasResultType = true; break;
|
2143
|
+
case SpvOpGroupAny: *hasResult = true; *hasResultType = true; break;
|
2144
|
+
case SpvOpGroupBroadcast: *hasResult = true; *hasResultType = true; break;
|
2145
|
+
case SpvOpGroupIAdd: *hasResult = true; *hasResultType = true; break;
|
2146
|
+
case SpvOpGroupFAdd: *hasResult = true; *hasResultType = true; break;
|
2147
|
+
case SpvOpGroupFMin: *hasResult = true; *hasResultType = true; break;
|
2148
|
+
case SpvOpGroupUMin: *hasResult = true; *hasResultType = true; break;
|
2149
|
+
case SpvOpGroupSMin: *hasResult = true; *hasResultType = true; break;
|
2150
|
+
case SpvOpGroupFMax: *hasResult = true; *hasResultType = true; break;
|
2151
|
+
case SpvOpGroupUMax: *hasResult = true; *hasResultType = true; break;
|
2152
|
+
case SpvOpGroupSMax: *hasResult = true; *hasResultType = true; break;
|
2153
|
+
case SpvOpReadPipe: *hasResult = true; *hasResultType = true; break;
|
2154
|
+
case SpvOpWritePipe: *hasResult = true; *hasResultType = true; break;
|
2155
|
+
case SpvOpReservedReadPipe: *hasResult = true; *hasResultType = true; break;
|
2156
|
+
case SpvOpReservedWritePipe: *hasResult = true; *hasResultType = true; break;
|
2157
|
+
case SpvOpReserveReadPipePackets: *hasResult = true; *hasResultType = true; break;
|
2158
|
+
case SpvOpReserveWritePipePackets: *hasResult = true; *hasResultType = true; break;
|
2159
|
+
case SpvOpCommitReadPipe: *hasResult = false; *hasResultType = false; break;
|
2160
|
+
case SpvOpCommitWritePipe: *hasResult = false; *hasResultType = false; break;
|
2161
|
+
case SpvOpIsValidReserveId: *hasResult = true; *hasResultType = true; break;
|
2162
|
+
case SpvOpGetNumPipePackets: *hasResult = true; *hasResultType = true; break;
|
2163
|
+
case SpvOpGetMaxPipePackets: *hasResult = true; *hasResultType = true; break;
|
2164
|
+
case SpvOpGroupReserveReadPipePackets: *hasResult = true; *hasResultType = true; break;
|
2165
|
+
case SpvOpGroupReserveWritePipePackets: *hasResult = true; *hasResultType = true; break;
|
2166
|
+
case SpvOpGroupCommitReadPipe: *hasResult = false; *hasResultType = false; break;
|
2167
|
+
case SpvOpGroupCommitWritePipe: *hasResult = false; *hasResultType = false; break;
|
2168
|
+
case SpvOpEnqueueMarker: *hasResult = true; *hasResultType = true; break;
|
2169
|
+
case SpvOpEnqueueKernel: *hasResult = true; *hasResultType = true; break;
|
2170
|
+
case SpvOpGetKernelNDrangeSubGroupCount: *hasResult = true; *hasResultType = true; break;
|
2171
|
+
case SpvOpGetKernelNDrangeMaxSubGroupSize: *hasResult = true; *hasResultType = true; break;
|
2172
|
+
case SpvOpGetKernelWorkGroupSize: *hasResult = true; *hasResultType = true; break;
|
2173
|
+
case SpvOpGetKernelPreferredWorkGroupSizeMultiple: *hasResult = true; *hasResultType = true; break;
|
2174
|
+
case SpvOpRetainEvent: *hasResult = false; *hasResultType = false; break;
|
2175
|
+
case SpvOpReleaseEvent: *hasResult = false; *hasResultType = false; break;
|
2176
|
+
case SpvOpCreateUserEvent: *hasResult = true; *hasResultType = true; break;
|
2177
|
+
case SpvOpIsValidEvent: *hasResult = true; *hasResultType = true; break;
|
2178
|
+
case SpvOpSetUserEventStatus: *hasResult = false; *hasResultType = false; break;
|
2179
|
+
case SpvOpCaptureEventProfilingInfo: *hasResult = false; *hasResultType = false; break;
|
2180
|
+
case SpvOpGetDefaultQueue: *hasResult = true; *hasResultType = true; break;
|
2181
|
+
case SpvOpBuildNDRange: *hasResult = true; *hasResultType = true; break;
|
2182
|
+
case SpvOpImageSparseSampleImplicitLod: *hasResult = true; *hasResultType = true; break;
|
2183
|
+
case SpvOpImageSparseSampleExplicitLod: *hasResult = true; *hasResultType = true; break;
|
2184
|
+
case SpvOpImageSparseSampleDrefImplicitLod: *hasResult = true; *hasResultType = true; break;
|
2185
|
+
case SpvOpImageSparseSampleDrefExplicitLod: *hasResult = true; *hasResultType = true; break;
|
2186
|
+
case SpvOpImageSparseSampleProjImplicitLod: *hasResult = true; *hasResultType = true; break;
|
2187
|
+
case SpvOpImageSparseSampleProjExplicitLod: *hasResult = true; *hasResultType = true; break;
|
2188
|
+
case SpvOpImageSparseSampleProjDrefImplicitLod: *hasResult = true; *hasResultType = true; break;
|
2189
|
+
case SpvOpImageSparseSampleProjDrefExplicitLod: *hasResult = true; *hasResultType = true; break;
|
2190
|
+
case SpvOpImageSparseFetch: *hasResult = true; *hasResultType = true; break;
|
2191
|
+
case SpvOpImageSparseGather: *hasResult = true; *hasResultType = true; break;
|
2192
|
+
case SpvOpImageSparseDrefGather: *hasResult = true; *hasResultType = true; break;
|
2193
|
+
case SpvOpImageSparseTexelsResident: *hasResult = true; *hasResultType = true; break;
|
2194
|
+
case SpvOpNoLine: *hasResult = false; *hasResultType = false; break;
|
2195
|
+
case SpvOpAtomicFlagTestAndSet: *hasResult = true; *hasResultType = true; break;
|
2196
|
+
case SpvOpAtomicFlagClear: *hasResult = false; *hasResultType = false; break;
|
2197
|
+
case SpvOpImageSparseRead: *hasResult = true; *hasResultType = true; break;
|
2198
|
+
case SpvOpSizeOf: *hasResult = true; *hasResultType = true; break;
|
2199
|
+
case SpvOpTypePipeStorage: *hasResult = true; *hasResultType = false; break;
|
2200
|
+
case SpvOpConstantPipeStorage: *hasResult = true; *hasResultType = true; break;
|
2201
|
+
case SpvOpCreatePipeFromPipeStorage: *hasResult = true; *hasResultType = true; break;
|
2202
|
+
case SpvOpGetKernelLocalSizeForSubgroupCount: *hasResult = true; *hasResultType = true; break;
|
2203
|
+
case SpvOpGetKernelMaxNumSubgroups: *hasResult = true; *hasResultType = true; break;
|
2204
|
+
case SpvOpTypeNamedBarrier: *hasResult = true; *hasResultType = false; break;
|
2205
|
+
case SpvOpNamedBarrierInitialize: *hasResult = true; *hasResultType = true; break;
|
2206
|
+
case SpvOpMemoryNamedBarrier: *hasResult = false; *hasResultType = false; break;
|
2207
|
+
case SpvOpModuleProcessed: *hasResult = false; *hasResultType = false; break;
|
2208
|
+
case SpvOpExecutionModeId: *hasResult = false; *hasResultType = false; break;
|
2209
|
+
case SpvOpDecorateId: *hasResult = false; *hasResultType = false; break;
|
2210
|
+
case SpvOpGroupNonUniformElect: *hasResult = true; *hasResultType = true; break;
|
2211
|
+
case SpvOpGroupNonUniformAll: *hasResult = true; *hasResultType = true; break;
|
2212
|
+
case SpvOpGroupNonUniformAny: *hasResult = true; *hasResultType = true; break;
|
2213
|
+
case SpvOpGroupNonUniformAllEqual: *hasResult = true; *hasResultType = true; break;
|
2214
|
+
case SpvOpGroupNonUniformBroadcast: *hasResult = true; *hasResultType = true; break;
|
2215
|
+
case SpvOpGroupNonUniformBroadcastFirst: *hasResult = true; *hasResultType = true; break;
|
2216
|
+
case SpvOpGroupNonUniformBallot: *hasResult = true; *hasResultType = true; break;
|
2217
|
+
case SpvOpGroupNonUniformInverseBallot: *hasResult = true; *hasResultType = true; break;
|
2218
|
+
case SpvOpGroupNonUniformBallotBitExtract: *hasResult = true; *hasResultType = true; break;
|
2219
|
+
case SpvOpGroupNonUniformBallotBitCount: *hasResult = true; *hasResultType = true; break;
|
2220
|
+
case SpvOpGroupNonUniformBallotFindLSB: *hasResult = true; *hasResultType = true; break;
|
2221
|
+
case SpvOpGroupNonUniformBallotFindMSB: *hasResult = true; *hasResultType = true; break;
|
2222
|
+
case SpvOpGroupNonUniformShuffle: *hasResult = true; *hasResultType = true; break;
|
2223
|
+
case SpvOpGroupNonUniformShuffleXor: *hasResult = true; *hasResultType = true; break;
|
2224
|
+
case SpvOpGroupNonUniformShuffleUp: *hasResult = true; *hasResultType = true; break;
|
2225
|
+
case SpvOpGroupNonUniformShuffleDown: *hasResult = true; *hasResultType = true; break;
|
2226
|
+
case SpvOpGroupNonUniformIAdd: *hasResult = true; *hasResultType = true; break;
|
2227
|
+
case SpvOpGroupNonUniformFAdd: *hasResult = true; *hasResultType = true; break;
|
2228
|
+
case SpvOpGroupNonUniformIMul: *hasResult = true; *hasResultType = true; break;
|
2229
|
+
case SpvOpGroupNonUniformFMul: *hasResult = true; *hasResultType = true; break;
|
2230
|
+
case SpvOpGroupNonUniformSMin: *hasResult = true; *hasResultType = true; break;
|
2231
|
+
case SpvOpGroupNonUniformUMin: *hasResult = true; *hasResultType = true; break;
|
2232
|
+
case SpvOpGroupNonUniformFMin: *hasResult = true; *hasResultType = true; break;
|
2233
|
+
case SpvOpGroupNonUniformSMax: *hasResult = true; *hasResultType = true; break;
|
2234
|
+
case SpvOpGroupNonUniformUMax: *hasResult = true; *hasResultType = true; break;
|
2235
|
+
case SpvOpGroupNonUniformFMax: *hasResult = true; *hasResultType = true; break;
|
2236
|
+
case SpvOpGroupNonUniformBitwiseAnd: *hasResult = true; *hasResultType = true; break;
|
2237
|
+
case SpvOpGroupNonUniformBitwiseOr: *hasResult = true; *hasResultType = true; break;
|
2238
|
+
case SpvOpGroupNonUniformBitwiseXor: *hasResult = true; *hasResultType = true; break;
|
2239
|
+
case SpvOpGroupNonUniformLogicalAnd: *hasResult = true; *hasResultType = true; break;
|
2240
|
+
case SpvOpGroupNonUniformLogicalOr: *hasResult = true; *hasResultType = true; break;
|
2241
|
+
case SpvOpGroupNonUniformLogicalXor: *hasResult = true; *hasResultType = true; break;
|
2242
|
+
case SpvOpGroupNonUniformQuadBroadcast: *hasResult = true; *hasResultType = true; break;
|
2243
|
+
case SpvOpGroupNonUniformQuadSwap: *hasResult = true; *hasResultType = true; break;
|
2244
|
+
case SpvOpCopyLogical: *hasResult = true; *hasResultType = true; break;
|
2245
|
+
case SpvOpPtrEqual: *hasResult = true; *hasResultType = true; break;
|
2246
|
+
case SpvOpPtrNotEqual: *hasResult = true; *hasResultType = true; break;
|
2247
|
+
case SpvOpPtrDiff: *hasResult = true; *hasResultType = true; break;
|
2248
|
+
case SpvOpTerminateInvocation: *hasResult = false; *hasResultType = false; break;
|
2249
|
+
case SpvOpSubgroupBallotKHR: *hasResult = true; *hasResultType = true; break;
|
2250
|
+
case SpvOpSubgroupFirstInvocationKHR: *hasResult = true; *hasResultType = true; break;
|
2251
|
+
case SpvOpSubgroupAllKHR: *hasResult = true; *hasResultType = true; break;
|
2252
|
+
case SpvOpSubgroupAnyKHR: *hasResult = true; *hasResultType = true; break;
|
2253
|
+
case SpvOpSubgroupAllEqualKHR: *hasResult = true; *hasResultType = true; break;
|
2254
|
+
case SpvOpGroupNonUniformRotateKHR: *hasResult = true; *hasResultType = true; break;
|
2255
|
+
case SpvOpSubgroupReadInvocationKHR: *hasResult = true; *hasResultType = true; break;
|
2256
|
+
case SpvOpTraceRayKHR: *hasResult = false; *hasResultType = false; break;
|
2257
|
+
case SpvOpExecuteCallableKHR: *hasResult = false; *hasResultType = false; break;
|
2258
|
+
case SpvOpConvertUToAccelerationStructureKHR: *hasResult = true; *hasResultType = true; break;
|
2259
|
+
case SpvOpIgnoreIntersectionKHR: *hasResult = false; *hasResultType = false; break;
|
2260
|
+
case SpvOpTerminateRayKHR: *hasResult = false; *hasResultType = false; break;
|
2261
|
+
case SpvOpSDot: *hasResult = true; *hasResultType = true; break;
|
2262
|
+
case SpvOpUDot: *hasResult = true; *hasResultType = true; break;
|
2263
|
+
case SpvOpSUDot: *hasResult = true; *hasResultType = true; break;
|
2264
|
+
case SpvOpSDotAccSat: *hasResult = true; *hasResultType = true; break;
|
2265
|
+
case SpvOpUDotAccSat: *hasResult = true; *hasResultType = true; break;
|
2266
|
+
case SpvOpSUDotAccSat: *hasResult = true; *hasResultType = true; break;
|
2267
|
+
case SpvOpTypeRayQueryKHR: *hasResult = true; *hasResultType = false; break;
|
2268
|
+
case SpvOpRayQueryInitializeKHR: *hasResult = false; *hasResultType = false; break;
|
2269
|
+
case SpvOpRayQueryTerminateKHR: *hasResult = false; *hasResultType = false; break;
|
2270
|
+
case SpvOpRayQueryGenerateIntersectionKHR: *hasResult = false; *hasResultType = false; break;
|
2271
|
+
case SpvOpRayQueryConfirmIntersectionKHR: *hasResult = false; *hasResultType = false; break;
|
2272
|
+
case SpvOpRayQueryProceedKHR: *hasResult = true; *hasResultType = true; break;
|
2273
|
+
case SpvOpRayQueryGetIntersectionTypeKHR: *hasResult = true; *hasResultType = true; break;
|
2274
|
+
case SpvOpGroupIAddNonUniformAMD: *hasResult = true; *hasResultType = true; break;
|
2275
|
+
case SpvOpGroupFAddNonUniformAMD: *hasResult = true; *hasResultType = true; break;
|
2276
|
+
case SpvOpGroupFMinNonUniformAMD: *hasResult = true; *hasResultType = true; break;
|
2277
|
+
case SpvOpGroupUMinNonUniformAMD: *hasResult = true; *hasResultType = true; break;
|
2278
|
+
case SpvOpGroupSMinNonUniformAMD: *hasResult = true; *hasResultType = true; break;
|
2279
|
+
case SpvOpGroupFMaxNonUniformAMD: *hasResult = true; *hasResultType = true; break;
|
2280
|
+
case SpvOpGroupUMaxNonUniformAMD: *hasResult = true; *hasResultType = true; break;
|
2281
|
+
case SpvOpGroupSMaxNonUniformAMD: *hasResult = true; *hasResultType = true; break;
|
2282
|
+
case SpvOpFragmentMaskFetchAMD: *hasResult = true; *hasResultType = true; break;
|
2283
|
+
case SpvOpFragmentFetchAMD: *hasResult = true; *hasResultType = true; break;
|
2284
|
+
case SpvOpReadClockKHR: *hasResult = true; *hasResultType = true; break;
|
2285
|
+
case SpvOpImageSampleFootprintNV: *hasResult = true; *hasResultType = true; break;
|
2286
|
+
case SpvOpEmitMeshTasksEXT: *hasResult = false; *hasResultType = false; break;
|
2287
|
+
case SpvOpSetMeshOutputsEXT: *hasResult = false; *hasResultType = false; break;
|
2288
|
+
case SpvOpGroupNonUniformPartitionNV: *hasResult = true; *hasResultType = true; break;
|
2289
|
+
case SpvOpWritePackedPrimitiveIndices4x8NV: *hasResult = false; *hasResultType = false; break;
|
2290
|
+
case SpvOpReportIntersectionNV: *hasResult = true; *hasResultType = true; break;
|
2291
|
+
case SpvOpIgnoreIntersectionNV: *hasResult = false; *hasResultType = false; break;
|
2292
|
+
case SpvOpTerminateRayNV: *hasResult = false; *hasResultType = false; break;
|
2293
|
+
case SpvOpTraceNV: *hasResult = false; *hasResultType = false; break;
|
2294
|
+
case SpvOpTraceMotionNV: *hasResult = false; *hasResultType = false; break;
|
2295
|
+
case SpvOpTraceRayMotionNV: *hasResult = false; *hasResultType = false; break;
|
2296
|
+
case SpvOpTypeAccelerationStructureNV: *hasResult = true; *hasResultType = false; break;
|
2297
|
+
case SpvOpExecuteCallableNV: *hasResult = false; *hasResultType = false; break;
|
2298
|
+
case SpvOpTypeCooperativeMatrixNV: *hasResult = true; *hasResultType = false; break;
|
2299
|
+
case SpvOpCooperativeMatrixLoadNV: *hasResult = true; *hasResultType = true; break;
|
2300
|
+
case SpvOpCooperativeMatrixStoreNV: *hasResult = false; *hasResultType = false; break;
|
2301
|
+
case SpvOpCooperativeMatrixMulAddNV: *hasResult = true; *hasResultType = true; break;
|
2302
|
+
case SpvOpCooperativeMatrixLengthNV: *hasResult = true; *hasResultType = true; break;
|
2303
|
+
case SpvOpBeginInvocationInterlockEXT: *hasResult = false; *hasResultType = false; break;
|
2304
|
+
case SpvOpEndInvocationInterlockEXT: *hasResult = false; *hasResultType = false; break;
|
2305
|
+
case SpvOpDemoteToHelperInvocation: *hasResult = false; *hasResultType = false; break;
|
2306
|
+
case SpvOpIsHelperInvocationEXT: *hasResult = true; *hasResultType = true; break;
|
2307
|
+
case SpvOpConvertUToImageNV: *hasResult = true; *hasResultType = true; break;
|
2308
|
+
case SpvOpConvertUToSamplerNV: *hasResult = true; *hasResultType = true; break;
|
2309
|
+
case SpvOpConvertImageToUNV: *hasResult = true; *hasResultType = true; break;
|
2310
|
+
case SpvOpConvertSamplerToUNV: *hasResult = true; *hasResultType = true; break;
|
2311
|
+
case SpvOpConvertUToSampledImageNV: *hasResult = true; *hasResultType = true; break;
|
2312
|
+
case SpvOpConvertSampledImageToUNV: *hasResult = true; *hasResultType = true; break;
|
2313
|
+
case SpvOpSamplerImageAddressingModeNV: *hasResult = false; *hasResultType = false; break;
|
2314
|
+
case SpvOpSubgroupShuffleINTEL: *hasResult = true; *hasResultType = true; break;
|
2315
|
+
case SpvOpSubgroupShuffleDownINTEL: *hasResult = true; *hasResultType = true; break;
|
2316
|
+
case SpvOpSubgroupShuffleUpINTEL: *hasResult = true; *hasResultType = true; break;
|
2317
|
+
case SpvOpSubgroupShuffleXorINTEL: *hasResult = true; *hasResultType = true; break;
|
2318
|
+
case SpvOpSubgroupBlockReadINTEL: *hasResult = true; *hasResultType = true; break;
|
2319
|
+
case SpvOpSubgroupBlockWriteINTEL: *hasResult = false; *hasResultType = false; break;
|
2320
|
+
case SpvOpSubgroupImageBlockReadINTEL: *hasResult = true; *hasResultType = true; break;
|
2321
|
+
case SpvOpSubgroupImageBlockWriteINTEL: *hasResult = false; *hasResultType = false; break;
|
2322
|
+
case SpvOpSubgroupImageMediaBlockReadINTEL: *hasResult = true; *hasResultType = true; break;
|
2323
|
+
case SpvOpSubgroupImageMediaBlockWriteINTEL: *hasResult = false; *hasResultType = false; break;
|
2324
|
+
case SpvOpUCountLeadingZerosINTEL: *hasResult = true; *hasResultType = true; break;
|
2325
|
+
case SpvOpUCountTrailingZerosINTEL: *hasResult = true; *hasResultType = true; break;
|
2326
|
+
case SpvOpAbsISubINTEL: *hasResult = true; *hasResultType = true; break;
|
2327
|
+
case SpvOpAbsUSubINTEL: *hasResult = true; *hasResultType = true; break;
|
2328
|
+
case SpvOpIAddSatINTEL: *hasResult = true; *hasResultType = true; break;
|
2329
|
+
case SpvOpUAddSatINTEL: *hasResult = true; *hasResultType = true; break;
|
2330
|
+
case SpvOpIAverageINTEL: *hasResult = true; *hasResultType = true; break;
|
2331
|
+
case SpvOpUAverageINTEL: *hasResult = true; *hasResultType = true; break;
|
2332
|
+
case SpvOpIAverageRoundedINTEL: *hasResult = true; *hasResultType = true; break;
|
2333
|
+
case SpvOpUAverageRoundedINTEL: *hasResult = true; *hasResultType = true; break;
|
2334
|
+
case SpvOpISubSatINTEL: *hasResult = true; *hasResultType = true; break;
|
2335
|
+
case SpvOpUSubSatINTEL: *hasResult = true; *hasResultType = true; break;
|
2336
|
+
case SpvOpIMul32x16INTEL: *hasResult = true; *hasResultType = true; break;
|
2337
|
+
case SpvOpUMul32x16INTEL: *hasResult = true; *hasResultType = true; break;
|
2338
|
+
case SpvOpConstantFunctionPointerINTEL: *hasResult = true; *hasResultType = true; break;
|
2339
|
+
case SpvOpFunctionPointerCallINTEL: *hasResult = true; *hasResultType = true; break;
|
2340
|
+
case SpvOpAsmTargetINTEL: *hasResult = true; *hasResultType = true; break;
|
2341
|
+
case SpvOpAsmINTEL: *hasResult = true; *hasResultType = true; break;
|
2342
|
+
case SpvOpAsmCallINTEL: *hasResult = true; *hasResultType = true; break;
|
2343
|
+
case SpvOpAtomicFMinEXT: *hasResult = true; *hasResultType = true; break;
|
2344
|
+
case SpvOpAtomicFMaxEXT: *hasResult = true; *hasResultType = true; break;
|
2345
|
+
case SpvOpAssumeTrueKHR: *hasResult = false; *hasResultType = false; break;
|
2346
|
+
case SpvOpExpectKHR: *hasResult = true; *hasResultType = true; break;
|
2347
|
+
case SpvOpDecorateString: *hasResult = false; *hasResultType = false; break;
|
2348
|
+
case SpvOpMemberDecorateString: *hasResult = false; *hasResultType = false; break;
|
2349
|
+
case SpvOpVmeImageINTEL: *hasResult = true; *hasResultType = true; break;
|
2350
|
+
case SpvOpTypeVmeImageINTEL: *hasResult = true; *hasResultType = false; break;
|
2351
|
+
case SpvOpTypeAvcImePayloadINTEL: *hasResult = true; *hasResultType = false; break;
|
2352
|
+
case SpvOpTypeAvcRefPayloadINTEL: *hasResult = true; *hasResultType = false; break;
|
2353
|
+
case SpvOpTypeAvcSicPayloadINTEL: *hasResult = true; *hasResultType = false; break;
|
2354
|
+
case SpvOpTypeAvcMcePayloadINTEL: *hasResult = true; *hasResultType = false; break;
|
2355
|
+
case SpvOpTypeAvcMceResultINTEL: *hasResult = true; *hasResultType = false; break;
|
2356
|
+
case SpvOpTypeAvcImeResultINTEL: *hasResult = true; *hasResultType = false; break;
|
2357
|
+
case SpvOpTypeAvcImeResultSingleReferenceStreamoutINTEL: *hasResult = true; *hasResultType = false; break;
|
2358
|
+
case SpvOpTypeAvcImeResultDualReferenceStreamoutINTEL: *hasResult = true; *hasResultType = false; break;
|
2359
|
+
case SpvOpTypeAvcImeSingleReferenceStreaminINTEL: *hasResult = true; *hasResultType = false; break;
|
2360
|
+
case SpvOpTypeAvcImeDualReferenceStreaminINTEL: *hasResult = true; *hasResultType = false; break;
|
2361
|
+
case SpvOpTypeAvcRefResultINTEL: *hasResult = true; *hasResultType = false; break;
|
2362
|
+
case SpvOpTypeAvcSicResultINTEL: *hasResult = true; *hasResultType = false; break;
|
2363
|
+
case SpvOpSubgroupAvcMceGetDefaultInterBaseMultiReferencePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
|
2364
|
+
case SpvOpSubgroupAvcMceSetInterBaseMultiReferencePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
|
2365
|
+
case SpvOpSubgroupAvcMceGetDefaultInterShapePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
|
2366
|
+
case SpvOpSubgroupAvcMceSetInterShapePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
|
2367
|
+
case SpvOpSubgroupAvcMceGetDefaultInterDirectionPenaltyINTEL: *hasResult = true; *hasResultType = true; break;
|
2368
|
+
case SpvOpSubgroupAvcMceSetInterDirectionPenaltyINTEL: *hasResult = true; *hasResultType = true; break;
|
2369
|
+
case SpvOpSubgroupAvcMceGetDefaultIntraLumaShapePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
|
2370
|
+
case SpvOpSubgroupAvcMceGetDefaultInterMotionVectorCostTableINTEL: *hasResult = true; *hasResultType = true; break;
|
2371
|
+
case SpvOpSubgroupAvcMceGetDefaultHighPenaltyCostTableINTEL: *hasResult = true; *hasResultType = true; break;
|
2372
|
+
case SpvOpSubgroupAvcMceGetDefaultMediumPenaltyCostTableINTEL: *hasResult = true; *hasResultType = true; break;
|
2373
|
+
case SpvOpSubgroupAvcMceGetDefaultLowPenaltyCostTableINTEL: *hasResult = true; *hasResultType = true; break;
|
2374
|
+
case SpvOpSubgroupAvcMceSetMotionVectorCostFunctionINTEL: *hasResult = true; *hasResultType = true; break;
|
2375
|
+
case SpvOpSubgroupAvcMceGetDefaultIntraLumaModePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
|
2376
|
+
case SpvOpSubgroupAvcMceGetDefaultNonDcLumaIntraPenaltyINTEL: *hasResult = true; *hasResultType = true; break;
|
2377
|
+
case SpvOpSubgroupAvcMceGetDefaultIntraChromaModeBasePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
|
2378
|
+
case SpvOpSubgroupAvcMceSetAcOnlyHaarINTEL: *hasResult = true; *hasResultType = true; break;
|
2379
|
+
case SpvOpSubgroupAvcMceSetSourceInterlacedFieldPolarityINTEL: *hasResult = true; *hasResultType = true; break;
|
2380
|
+
case SpvOpSubgroupAvcMceSetSingleReferenceInterlacedFieldPolarityINTEL: *hasResult = true; *hasResultType = true; break;
|
2381
|
+
case SpvOpSubgroupAvcMceSetDualReferenceInterlacedFieldPolaritiesINTEL: *hasResult = true; *hasResultType = true; break;
|
2382
|
+
case SpvOpSubgroupAvcMceConvertToImePayloadINTEL: *hasResult = true; *hasResultType = true; break;
|
2383
|
+
case SpvOpSubgroupAvcMceConvertToImeResultINTEL: *hasResult = true; *hasResultType = true; break;
|
2384
|
+
case SpvOpSubgroupAvcMceConvertToRefPayloadINTEL: *hasResult = true; *hasResultType = true; break;
|
2385
|
+
case SpvOpSubgroupAvcMceConvertToRefResultINTEL: *hasResult = true; *hasResultType = true; break;
|
2386
|
+
case SpvOpSubgroupAvcMceConvertToSicPayloadINTEL: *hasResult = true; *hasResultType = true; break;
|
2387
|
+
case SpvOpSubgroupAvcMceConvertToSicResultINTEL: *hasResult = true; *hasResultType = true; break;
|
2388
|
+
case SpvOpSubgroupAvcMceGetMotionVectorsINTEL: *hasResult = true; *hasResultType = true; break;
|
2389
|
+
case SpvOpSubgroupAvcMceGetInterDistortionsINTEL: *hasResult = true; *hasResultType = true; break;
|
2390
|
+
case SpvOpSubgroupAvcMceGetBestInterDistortionsINTEL: *hasResult = true; *hasResultType = true; break;
|
2391
|
+
case SpvOpSubgroupAvcMceGetInterMajorShapeINTEL: *hasResult = true; *hasResultType = true; break;
|
2392
|
+
case SpvOpSubgroupAvcMceGetInterMinorShapeINTEL: *hasResult = true; *hasResultType = true; break;
|
2393
|
+
case SpvOpSubgroupAvcMceGetInterDirectionsINTEL: *hasResult = true; *hasResultType = true; break;
|
2394
|
+
case SpvOpSubgroupAvcMceGetInterMotionVectorCountINTEL: *hasResult = true; *hasResultType = true; break;
|
2395
|
+
case SpvOpSubgroupAvcMceGetInterReferenceIdsINTEL: *hasResult = true; *hasResultType = true; break;
|
2396
|
+
case SpvOpSubgroupAvcMceGetInterReferenceInterlacedFieldPolaritiesINTEL: *hasResult = true; *hasResultType = true; break;
|
2397
|
+
case SpvOpSubgroupAvcImeInitializeINTEL: *hasResult = true; *hasResultType = true; break;
|
2398
|
+
case SpvOpSubgroupAvcImeSetSingleReferenceINTEL: *hasResult = true; *hasResultType = true; break;
|
2399
|
+
case SpvOpSubgroupAvcImeSetDualReferenceINTEL: *hasResult = true; *hasResultType = true; break;
|
2400
|
+
case SpvOpSubgroupAvcImeRefWindowSizeINTEL: *hasResult = true; *hasResultType = true; break;
|
2401
|
+
case SpvOpSubgroupAvcImeAdjustRefOffsetINTEL: *hasResult = true; *hasResultType = true; break;
|
2402
|
+
case SpvOpSubgroupAvcImeConvertToMcePayloadINTEL: *hasResult = true; *hasResultType = true; break;
|
2403
|
+
case SpvOpSubgroupAvcImeSetMaxMotionVectorCountINTEL: *hasResult = true; *hasResultType = true; break;
|
2404
|
+
case SpvOpSubgroupAvcImeSetUnidirectionalMixDisableINTEL: *hasResult = true; *hasResultType = true; break;
|
2405
|
+
case SpvOpSubgroupAvcImeSetEarlySearchTerminationThresholdINTEL: *hasResult = true; *hasResultType = true; break;
|
2406
|
+
case SpvOpSubgroupAvcImeSetWeightedSadINTEL: *hasResult = true; *hasResultType = true; break;
|
2407
|
+
case SpvOpSubgroupAvcImeEvaluateWithSingleReferenceINTEL: *hasResult = true; *hasResultType = true; break;
|
2408
|
+
case SpvOpSubgroupAvcImeEvaluateWithDualReferenceINTEL: *hasResult = true; *hasResultType = true; break;
|
2409
|
+
case SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreaminINTEL: *hasResult = true; *hasResultType = true; break;
|
2410
|
+
case SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreaminINTEL: *hasResult = true; *hasResultType = true; break;
|
2411
|
+
case SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreamoutINTEL: *hasResult = true; *hasResultType = true; break;
|
2412
|
+
case SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreamoutINTEL: *hasResult = true; *hasResultType = true; break;
|
2413
|
+
case SpvOpSubgroupAvcImeEvaluateWithSingleReferenceStreaminoutINTEL: *hasResult = true; *hasResultType = true; break;
|
2414
|
+
case SpvOpSubgroupAvcImeEvaluateWithDualReferenceStreaminoutINTEL: *hasResult = true; *hasResultType = true; break;
|
2415
|
+
case SpvOpSubgroupAvcImeConvertToMceResultINTEL: *hasResult = true; *hasResultType = true; break;
|
2416
|
+
case SpvOpSubgroupAvcImeGetSingleReferenceStreaminINTEL: *hasResult = true; *hasResultType = true; break;
|
2417
|
+
case SpvOpSubgroupAvcImeGetDualReferenceStreaminINTEL: *hasResult = true; *hasResultType = true; break;
|
2418
|
+
case SpvOpSubgroupAvcImeStripSingleReferenceStreamoutINTEL: *hasResult = true; *hasResultType = true; break;
|
2419
|
+
case SpvOpSubgroupAvcImeStripDualReferenceStreamoutINTEL: *hasResult = true; *hasResultType = true; break;
|
2420
|
+
case SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeMotionVectorsINTEL: *hasResult = true; *hasResultType = true; break;
|
2421
|
+
case SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeDistortionsINTEL: *hasResult = true; *hasResultType = true; break;
|
2422
|
+
case SpvOpSubgroupAvcImeGetStreamoutSingleReferenceMajorShapeReferenceIdsINTEL: *hasResult = true; *hasResultType = true; break;
|
2423
|
+
case SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeMotionVectorsINTEL: *hasResult = true; *hasResultType = true; break;
|
2424
|
+
case SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeDistortionsINTEL: *hasResult = true; *hasResultType = true; break;
|
2425
|
+
case SpvOpSubgroupAvcImeGetStreamoutDualReferenceMajorShapeReferenceIdsINTEL: *hasResult = true; *hasResultType = true; break;
|
2426
|
+
case SpvOpSubgroupAvcImeGetBorderReachedINTEL: *hasResult = true; *hasResultType = true; break;
|
2427
|
+
case SpvOpSubgroupAvcImeGetTruncatedSearchIndicationINTEL: *hasResult = true; *hasResultType = true; break;
|
2428
|
+
case SpvOpSubgroupAvcImeGetUnidirectionalEarlySearchTerminationINTEL: *hasResult = true; *hasResultType = true; break;
|
2429
|
+
case SpvOpSubgroupAvcImeGetWeightingPatternMinimumMotionVectorINTEL: *hasResult = true; *hasResultType = true; break;
|
2430
|
+
case SpvOpSubgroupAvcImeGetWeightingPatternMinimumDistortionINTEL: *hasResult = true; *hasResultType = true; break;
|
2431
|
+
case SpvOpSubgroupAvcFmeInitializeINTEL: *hasResult = true; *hasResultType = true; break;
|
2432
|
+
case SpvOpSubgroupAvcBmeInitializeINTEL: *hasResult = true; *hasResultType = true; break;
|
2433
|
+
case SpvOpSubgroupAvcRefConvertToMcePayloadINTEL: *hasResult = true; *hasResultType = true; break;
|
2434
|
+
case SpvOpSubgroupAvcRefSetBidirectionalMixDisableINTEL: *hasResult = true; *hasResultType = true; break;
|
2435
|
+
case SpvOpSubgroupAvcRefSetBilinearFilterEnableINTEL: *hasResult = true; *hasResultType = true; break;
|
2436
|
+
case SpvOpSubgroupAvcRefEvaluateWithSingleReferenceINTEL: *hasResult = true; *hasResultType = true; break;
|
2437
|
+
case SpvOpSubgroupAvcRefEvaluateWithDualReferenceINTEL: *hasResult = true; *hasResultType = true; break;
|
2438
|
+
case SpvOpSubgroupAvcRefEvaluateWithMultiReferenceINTEL: *hasResult = true; *hasResultType = true; break;
|
2439
|
+
case SpvOpSubgroupAvcRefEvaluateWithMultiReferenceInterlacedINTEL: *hasResult = true; *hasResultType = true; break;
|
2440
|
+
case SpvOpSubgroupAvcRefConvertToMceResultINTEL: *hasResult = true; *hasResultType = true; break;
|
2441
|
+
case SpvOpSubgroupAvcSicInitializeINTEL: *hasResult = true; *hasResultType = true; break;
|
2442
|
+
case SpvOpSubgroupAvcSicConfigureSkcINTEL: *hasResult = true; *hasResultType = true; break;
|
2443
|
+
case SpvOpSubgroupAvcSicConfigureIpeLumaINTEL: *hasResult = true; *hasResultType = true; break;
|
2444
|
+
case SpvOpSubgroupAvcSicConfigureIpeLumaChromaINTEL: *hasResult = true; *hasResultType = true; break;
|
2445
|
+
case SpvOpSubgroupAvcSicGetMotionVectorMaskINTEL: *hasResult = true; *hasResultType = true; break;
|
2446
|
+
case SpvOpSubgroupAvcSicConvertToMcePayloadINTEL: *hasResult = true; *hasResultType = true; break;
|
2447
|
+
case SpvOpSubgroupAvcSicSetIntraLumaShapePenaltyINTEL: *hasResult = true; *hasResultType = true; break;
|
2448
|
+
case SpvOpSubgroupAvcSicSetIntraLumaModeCostFunctionINTEL: *hasResult = true; *hasResultType = true; break;
|
2449
|
+
case SpvOpSubgroupAvcSicSetIntraChromaModeCostFunctionINTEL: *hasResult = true; *hasResultType = true; break;
|
2450
|
+
case SpvOpSubgroupAvcSicSetBilinearFilterEnableINTEL: *hasResult = true; *hasResultType = true; break;
|
2451
|
+
case SpvOpSubgroupAvcSicSetSkcForwardTransformEnableINTEL: *hasResult = true; *hasResultType = true; break;
|
2452
|
+
case SpvOpSubgroupAvcSicSetBlockBasedRawSkipSadINTEL: *hasResult = true; *hasResultType = true; break;
|
2453
|
+
case SpvOpSubgroupAvcSicEvaluateIpeINTEL: *hasResult = true; *hasResultType = true; break;
|
2454
|
+
case SpvOpSubgroupAvcSicEvaluateWithSingleReferenceINTEL: *hasResult = true; *hasResultType = true; break;
|
2455
|
+
case SpvOpSubgroupAvcSicEvaluateWithDualReferenceINTEL: *hasResult = true; *hasResultType = true; break;
|
2456
|
+
case SpvOpSubgroupAvcSicEvaluateWithMultiReferenceINTEL: *hasResult = true; *hasResultType = true; break;
|
2457
|
+
case SpvOpSubgroupAvcSicEvaluateWithMultiReferenceInterlacedINTEL: *hasResult = true; *hasResultType = true; break;
|
2458
|
+
case SpvOpSubgroupAvcSicConvertToMceResultINTEL: *hasResult = true; *hasResultType = true; break;
|
2459
|
+
case SpvOpSubgroupAvcSicGetIpeLumaShapeINTEL: *hasResult = true; *hasResultType = true; break;
|
2460
|
+
case SpvOpSubgroupAvcSicGetBestIpeLumaDistortionINTEL: *hasResult = true; *hasResultType = true; break;
|
2461
|
+
case SpvOpSubgroupAvcSicGetBestIpeChromaDistortionINTEL: *hasResult = true; *hasResultType = true; break;
|
2462
|
+
case SpvOpSubgroupAvcSicGetPackedIpeLumaModesINTEL: *hasResult = true; *hasResultType = true; break;
|
2463
|
+
case SpvOpSubgroupAvcSicGetIpeChromaModeINTEL: *hasResult = true; *hasResultType = true; break;
|
2464
|
+
case SpvOpSubgroupAvcSicGetPackedSkcLumaCountThresholdINTEL: *hasResult = true; *hasResultType = true; break;
|
2465
|
+
case SpvOpSubgroupAvcSicGetPackedSkcLumaSumThresholdINTEL: *hasResult = true; *hasResultType = true; break;
|
2466
|
+
case SpvOpSubgroupAvcSicGetInterRawSadsINTEL: *hasResult = true; *hasResultType = true; break;
|
2467
|
+
case SpvOpVariableLengthArrayINTEL: *hasResult = true; *hasResultType = true; break;
|
2468
|
+
case SpvOpSaveMemoryINTEL: *hasResult = true; *hasResultType = true; break;
|
2469
|
+
case SpvOpRestoreMemoryINTEL: *hasResult = false; *hasResultType = false; break;
|
2470
|
+
case SpvOpArbitraryFloatSinCosPiINTEL: *hasResult = true; *hasResultType = true; break;
|
2471
|
+
case SpvOpArbitraryFloatCastINTEL: *hasResult = true; *hasResultType = true; break;
|
2472
|
+
case SpvOpArbitraryFloatCastFromIntINTEL: *hasResult = true; *hasResultType = true; break;
|
2473
|
+
case SpvOpArbitraryFloatCastToIntINTEL: *hasResult = true; *hasResultType = true; break;
|
2474
|
+
case SpvOpArbitraryFloatAddINTEL: *hasResult = true; *hasResultType = true; break;
|
2475
|
+
case SpvOpArbitraryFloatSubINTEL: *hasResult = true; *hasResultType = true; break;
|
2476
|
+
case SpvOpArbitraryFloatMulINTEL: *hasResult = true; *hasResultType = true; break;
|
2477
|
+
case SpvOpArbitraryFloatDivINTEL: *hasResult = true; *hasResultType = true; break;
|
2478
|
+
case SpvOpArbitraryFloatGTINTEL: *hasResult = true; *hasResultType = true; break;
|
2479
|
+
case SpvOpArbitraryFloatGEINTEL: *hasResult = true; *hasResultType = true; break;
|
2480
|
+
case SpvOpArbitraryFloatLTINTEL: *hasResult = true; *hasResultType = true; break;
|
2481
|
+
case SpvOpArbitraryFloatLEINTEL: *hasResult = true; *hasResultType = true; break;
|
2482
|
+
case SpvOpArbitraryFloatEQINTEL: *hasResult = true; *hasResultType = true; break;
|
2483
|
+
case SpvOpArbitraryFloatRecipINTEL: *hasResult = true; *hasResultType = true; break;
|
2484
|
+
case SpvOpArbitraryFloatRSqrtINTEL: *hasResult = true; *hasResultType = true; break;
|
2485
|
+
case SpvOpArbitraryFloatCbrtINTEL: *hasResult = true; *hasResultType = true; break;
|
2486
|
+
case SpvOpArbitraryFloatHypotINTEL: *hasResult = true; *hasResultType = true; break;
|
2487
|
+
case SpvOpArbitraryFloatSqrtINTEL: *hasResult = true; *hasResultType = true; break;
|
2488
|
+
case SpvOpArbitraryFloatLogINTEL: *hasResult = true; *hasResultType = true; break;
|
2489
|
+
case SpvOpArbitraryFloatLog2INTEL: *hasResult = true; *hasResultType = true; break;
|
2490
|
+
case SpvOpArbitraryFloatLog10INTEL: *hasResult = true; *hasResultType = true; break;
|
2491
|
+
case SpvOpArbitraryFloatLog1pINTEL: *hasResult = true; *hasResultType = true; break;
|
2492
|
+
case SpvOpArbitraryFloatExpINTEL: *hasResult = true; *hasResultType = true; break;
|
2493
|
+
case SpvOpArbitraryFloatExp2INTEL: *hasResult = true; *hasResultType = true; break;
|
2494
|
+
case SpvOpArbitraryFloatExp10INTEL: *hasResult = true; *hasResultType = true; break;
|
2495
|
+
case SpvOpArbitraryFloatExpm1INTEL: *hasResult = true; *hasResultType = true; break;
|
2496
|
+
case SpvOpArbitraryFloatSinINTEL: *hasResult = true; *hasResultType = true; break;
|
2497
|
+
case SpvOpArbitraryFloatCosINTEL: *hasResult = true; *hasResultType = true; break;
|
2498
|
+
case SpvOpArbitraryFloatSinCosINTEL: *hasResult = true; *hasResultType = true; break;
|
2499
|
+
case SpvOpArbitraryFloatSinPiINTEL: *hasResult = true; *hasResultType = true; break;
|
2500
|
+
case SpvOpArbitraryFloatCosPiINTEL: *hasResult = true; *hasResultType = true; break;
|
2501
|
+
case SpvOpArbitraryFloatASinINTEL: *hasResult = true; *hasResultType = true; break;
|
2502
|
+
case SpvOpArbitraryFloatASinPiINTEL: *hasResult = true; *hasResultType = true; break;
|
2503
|
+
case SpvOpArbitraryFloatACosINTEL: *hasResult = true; *hasResultType = true; break;
|
2504
|
+
case SpvOpArbitraryFloatACosPiINTEL: *hasResult = true; *hasResultType = true; break;
|
2505
|
+
case SpvOpArbitraryFloatATanINTEL: *hasResult = true; *hasResultType = true; break;
|
2506
|
+
case SpvOpArbitraryFloatATanPiINTEL: *hasResult = true; *hasResultType = true; break;
|
2507
|
+
case SpvOpArbitraryFloatATan2INTEL: *hasResult = true; *hasResultType = true; break;
|
2508
|
+
case SpvOpArbitraryFloatPowINTEL: *hasResult = true; *hasResultType = true; break;
|
2509
|
+
case SpvOpArbitraryFloatPowRINTEL: *hasResult = true; *hasResultType = true; break;
|
2510
|
+
case SpvOpArbitraryFloatPowNINTEL: *hasResult = true; *hasResultType = true; break;
|
2511
|
+
case SpvOpLoopControlINTEL: *hasResult = false; *hasResultType = false; break;
|
2512
|
+
case SpvOpAliasDomainDeclINTEL: *hasResult = true; *hasResultType = false; break;
|
2513
|
+
case SpvOpAliasScopeDeclINTEL: *hasResult = true; *hasResultType = false; break;
|
2514
|
+
case SpvOpAliasScopeListDeclINTEL: *hasResult = true; *hasResultType = false; break;
|
2515
|
+
case SpvOpFixedSqrtINTEL: *hasResult = true; *hasResultType = true; break;
|
2516
|
+
case SpvOpFixedRecipINTEL: *hasResult = true; *hasResultType = true; break;
|
2517
|
+
case SpvOpFixedRsqrtINTEL: *hasResult = true; *hasResultType = true; break;
|
2518
|
+
case SpvOpFixedSinINTEL: *hasResult = true; *hasResultType = true; break;
|
2519
|
+
case SpvOpFixedCosINTEL: *hasResult = true; *hasResultType = true; break;
|
2520
|
+
case SpvOpFixedSinCosINTEL: *hasResult = true; *hasResultType = true; break;
|
2521
|
+
case SpvOpFixedSinPiINTEL: *hasResult = true; *hasResultType = true; break;
|
2522
|
+
case SpvOpFixedCosPiINTEL: *hasResult = true; *hasResultType = true; break;
|
2523
|
+
case SpvOpFixedSinCosPiINTEL: *hasResult = true; *hasResultType = true; break;
|
2524
|
+
case SpvOpFixedLogINTEL: *hasResult = true; *hasResultType = true; break;
|
2525
|
+
case SpvOpFixedExpINTEL: *hasResult = true; *hasResultType = true; break;
|
2526
|
+
case SpvOpPtrCastToCrossWorkgroupINTEL: *hasResult = true; *hasResultType = true; break;
|
2527
|
+
case SpvOpCrossWorkgroupCastToPtrINTEL: *hasResult = true; *hasResultType = true; break;
|
2528
|
+
case SpvOpReadPipeBlockingINTEL: *hasResult = true; *hasResultType = true; break;
|
2529
|
+
case SpvOpWritePipeBlockingINTEL: *hasResult = true; *hasResultType = true; break;
|
2530
|
+
case SpvOpFPGARegINTEL: *hasResult = true; *hasResultType = true; break;
|
2531
|
+
case SpvOpRayQueryGetRayTMinKHR: *hasResult = true; *hasResultType = true; break;
|
2532
|
+
case SpvOpRayQueryGetRayFlagsKHR: *hasResult = true; *hasResultType = true; break;
|
2533
|
+
case SpvOpRayQueryGetIntersectionTKHR: *hasResult = true; *hasResultType = true; break;
|
2534
|
+
case SpvOpRayQueryGetIntersectionInstanceCustomIndexKHR: *hasResult = true; *hasResultType = true; break;
|
2535
|
+
case SpvOpRayQueryGetIntersectionInstanceIdKHR: *hasResult = true; *hasResultType = true; break;
|
2536
|
+
case SpvOpRayQueryGetIntersectionInstanceShaderBindingTableRecordOffsetKHR: *hasResult = true; *hasResultType = true; break;
|
2537
|
+
case SpvOpRayQueryGetIntersectionGeometryIndexKHR: *hasResult = true; *hasResultType = true; break;
|
2538
|
+
case SpvOpRayQueryGetIntersectionPrimitiveIndexKHR: *hasResult = true; *hasResultType = true; break;
|
2539
|
+
case SpvOpRayQueryGetIntersectionBarycentricsKHR: *hasResult = true; *hasResultType = true; break;
|
2540
|
+
case SpvOpRayQueryGetIntersectionFrontFaceKHR: *hasResult = true; *hasResultType = true; break;
|
2541
|
+
case SpvOpRayQueryGetIntersectionCandidateAABBOpaqueKHR: *hasResult = true; *hasResultType = true; break;
|
2542
|
+
case SpvOpRayQueryGetIntersectionObjectRayDirectionKHR: *hasResult = true; *hasResultType = true; break;
|
2543
|
+
case SpvOpRayQueryGetIntersectionObjectRayOriginKHR: *hasResult = true; *hasResultType = true; break;
|
2544
|
+
case SpvOpRayQueryGetWorldRayDirectionKHR: *hasResult = true; *hasResultType = true; break;
|
2545
|
+
case SpvOpRayQueryGetWorldRayOriginKHR: *hasResult = true; *hasResultType = true; break;
|
2546
|
+
case SpvOpRayQueryGetIntersectionObjectToWorldKHR: *hasResult = true; *hasResultType = true; break;
|
2547
|
+
case SpvOpRayQueryGetIntersectionWorldToObjectKHR: *hasResult = true; *hasResultType = true; break;
|
2548
|
+
case SpvOpAtomicFAddEXT: *hasResult = true; *hasResultType = true; break;
|
2549
|
+
case SpvOpTypeBufferSurfaceINTEL: *hasResult = true; *hasResultType = false; break;
|
2550
|
+
case SpvOpTypeStructContinuedINTEL: *hasResult = false; *hasResultType = false; break;
|
2551
|
+
case SpvOpConstantCompositeContinuedINTEL: *hasResult = false; *hasResultType = false; break;
|
2552
|
+
case SpvOpSpecConstantCompositeContinuedINTEL: *hasResult = false; *hasResultType = false; break;
|
2553
|
+
case SpvOpControlBarrierArriveINTEL: *hasResult = false; *hasResultType = false; break;
|
2554
|
+
case SpvOpControlBarrierWaitINTEL: *hasResult = false; *hasResultType = false; break;
|
2555
|
+
case SpvOpGroupIMulKHR: *hasResult = true; *hasResultType = true; break;
|
2556
|
+
case SpvOpGroupFMulKHR: *hasResult = true; *hasResultType = true; break;
|
2557
|
+
case SpvOpGroupBitwiseAndKHR: *hasResult = true; *hasResultType = true; break;
|
2558
|
+
case SpvOpGroupBitwiseOrKHR: *hasResult = true; *hasResultType = true; break;
|
2559
|
+
case SpvOpGroupBitwiseXorKHR: *hasResult = true; *hasResultType = true; break;
|
2560
|
+
case SpvOpGroupLogicalAndKHR: *hasResult = true; *hasResultType = true; break;
|
2561
|
+
case SpvOpGroupLogicalOrKHR: *hasResult = true; *hasResultType = true; break;
|
2562
|
+
case SpvOpGroupLogicalXorKHR: *hasResult = true; *hasResultType = true; break;
|
2563
|
+
}
|
2564
|
+
}
|
2565
|
+
#endif /* SPV_ENABLE_UTILITY_CODE */
|
2566
|
+
|
2567
|
+
#endif
|
2568
|
+
|