forked from KhronosGroup/SPIRV-Headers
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:KhronosGroup/SPIRV-Headers into hea…
…der_4_hlsl
- Loading branch information
Showing
16 changed files
with
3,419 additions
and
2,541 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,15 +64,15 @@ | |
<id value="11" vendor="Intel" comment="Contact Alexey, [email protected]"/> | ||
<id value="12" vendor="Imagination" comment="Contact Stephen Clarke, [email protected]"/> | ||
<id value="13" vendor="Google" tool="Shaderc over Glslang" comment="Contact David Neto, [email protected]"/> | ||
<id value="14" vendor="Google" tool="spiregg" comment="Contact Lei Zhang, antiagainst@google.com"/> | ||
<id value="14" vendor="Google" tool="spiregg" comment="Contact Steven Perron, stevenperron@google.com"/> | ||
<id value="15" vendor="Google" tool="rspirv" comment="Contact Lei Zhang, [email protected]"/> | ||
<id value="16" vendor="X-LEGEND" tool="Mesa-IR/SPIR-V Translator" comment="Contact Metora Wang, github:metora/MesaGLSLCompiler"/> | ||
<id value="17" vendor="Khronos" tool="SPIR-V Tools Linker" comment="Contact David Neto, [email protected]"/> | ||
<id value="18" vendor="Wine" tool="VKD3D Shader Compiler" comment="Contact [email protected]"/> | ||
<id value="19" vendor="Tellusim" tool="Clay Shader Compiler" comment="Contact [email protected]"/> | ||
<id value="20" vendor="W3C WebGPU Group" tool="WHLSL Shader Translator" comment="https://github.com/gpuweb/WHLSL"/> | ||
<id value="21" vendor="Google" tool="Clspv" comment="Contact David Neto, [email protected]"/> | ||
<id value="22" vendor="Google" tool="MLIR SPIR-V Serializer" comment="Contact Lei Zhang, antiagainst@google.com"/> | ||
<id value="22" vendor="LLVM" tool="MLIR SPIR-V Serializer" comment="Contact Jakub Kuderski, jakub.kuderski@amd.com, https://mlir.llvm.org/docs/Dialects/SPIR-V/"/> | ||
<id value="23" vendor="Google" tool="Tint Compiler" comment="Contact David Neto, [email protected]"/> | ||
<id value="24" vendor="Google" tool="ANGLE Shader Compiler" comment="Contact Shahbaz Youssefi, [email protected]"/> | ||
<id value="25" vendor="Netease Games" tool="Messiah Shader Compiler" comment="Contact Yuwen Wu, [email protected]"/> | ||
|
@@ -94,7 +94,9 @@ | |
<id value="41" vendor="Zig Software Foundation" tool="Zig Compiler" comment="Contact Robin Voetter, https://github.com/Snektron"/> | ||
<id value="42" vendor="Rendong Liang" tool="spq" comment="Contact Rendong Liang, [email protected], https://github.com/PENGUINLIONG/spq-rs"/> | ||
<id value="43" vendor="LLVM" tool="LLVM SPIR-V Backend" comment="Contact Michal Paszkowski, [email protected], https://github.com/llvm/llvm-project/tree/main/llvm/lib/Target/SPIRV"/> | ||
<unused start="44" end="0xFFFF" comment="Tool ID range reservable for future use by vendors"/> | ||
<id value="44" vendor="Robert Konrad" tool="Kongruent" comment="Contact Robert Konrad, https://github.com/Kode/Kongruent"/> | ||
<id value="45" vendor="Kitsunebi Games" tool="Nuvk SPIR-V Emitter and DLSL compiler" comment="Contact Luna Nielsen, [email protected], https://github.com/Inochi2D/nuvk"/> | ||
<unused start="46" end="0xFFFF" comment="Tool ID range reservable for future use by vendors"/> | ||
</ids> | ||
|
||
<!-- SECTION: SPIR-V Opcodes and Enumerants --> | ||
|
@@ -151,13 +153,14 @@ | |
<ids type="opcode" start="6528" end="6591" vendor="Codeplay" comment="Contact [email protected]"/> | ||
<ids type="opcode" start="6592" end="6655" vendor="Saarland University" comment="Contact [email protected]"/> | ||
<ids type="opcode" start="6656" end="6719" vendor="Meta" comment="Contact [email protected]"/> | ||
<ids type="opcode" start="6720" end="6783" vendor="MediaTek" comment="Contact [email protected]"/> | ||
<!-- Opcode enumerants to reserve for future use. To get a block, allocate | ||
multiples of 64 starting at the lowest available point in this | ||
block and add a corresponding <ids> tag immediately above. Make | ||
sure to fill in the vendor attribute, and preferably add a contact | ||
person/address in a comment attribute. --> | ||
<!-- Example new block: <ids type="opcode" start="XXXX" end="XXXX+64n-1" vendor="Add vendor" comment="Contact TBD"/> --> | ||
<ids type="opcode" start="6720" end="65535" comment="Opcode range reservable for future use by vendors"/> | ||
<ids type="opcode" start="6784" end="65535" comment="Opcode range reservable for future use by vendors"/> | ||
<!-- End reservations of opcodes --> | ||
|
||
|
||
|
@@ -184,13 +187,14 @@ | |
<ids type="enumerant" start="6528" end="6591" vendor="Codeplay" comment="Contact [email protected]"/> | ||
<ids type="enumerant" start="6592" end="6655" vendor="Saarland University" comment="Contact [email protected]"/> | ||
<ids type="enumerant" start="6656" end="6719" vendor="Meta" comment="Contact [email protected]"/> | ||
<ids type="enumerant" start="6720" end="6783" vendor="MediaTek" comment="Contact [email protected]"/> | ||
<!-- Enumerants to reserve for future use. To get a block, allocate | ||
multiples of 64 starting at the lowest available point in this | ||
block and add a corresponding <ids> tag immediately above. Make | ||
sure to fill in the vendor attribute, and preferably add a contact | ||
person/address in a comment attribute. --> | ||
<!-- Example new block: <ids type="enumerant" start="XXXX" end="XXXX+64n-1" vendor="Add vendor" comment="Contact TBD"/> --> | ||
<ids type="enumerant" start="6720" end="4294967295" comment="Enumerant range reservable for future use by vendors"/> | ||
<ids type="enumerant" start="6784" end="4294967295" comment="Enumerant range reservable for future use by vendors"/> | ||
<!-- End reservations of enumerants --> | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.