diff options
author | Henry Rose <heroseh@protonmail.com> | 2023-04-13 20:49:09 +0100 |
---|---|---|
committer | Henry Rose <heroseh@protonmail.com> | 2023-04-13 20:49:09 +0100 |
commit | fc2395fd2f155f08cfb7ccef3545827c2333dce6 (patch) | |
tree | 2b389fa349386a40f16e56db1ce840f529b155b1 /include | |
parent | cfbe4feef20c3c0628712c2792624f0221e378ac (diff) | |
download | SPIRV-Headers-fc2395fd2f155f08cfb7ccef3545827c2333dce6.tar.gz SPIRV-Headers-fc2395fd2f155f08cfb7ccef3545827c2333dce6.tar.bz2 SPIRV-Headers-fc2395fd2f155f08cfb7ccef3545827c2333dce6.zip |
Add Hero C Compiler to the vendor list & add C source language to the Source Language enum
Diffstat (limited to 'include')
-rw-r--r-- | include/spirv/spir-v.xml | 3 | ||||
-rw-r--r-- | include/spirv/unified1/spirv.core.grammar.json | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/spirv/spir-v.xml b/include/spirv/spir-v.xml index 6648b33..20b94f2 100644 --- a/include/spirv/spir-v.xml +++ b/include/spirv/spir-v.xml @@ -87,7 +87,8 @@ <id value="34" vendor="Rayan Hatout" tool="SPIRVSmith" comment="Contact Rayan Hatout rayan.hatout@gmail.com, Repo https://github.com/rayanht/SPIRVSmith"/> <id value="35" vendor="Saarland University" tool="Shady" comment="Contact Hugo Devillers devillers@uni-saarland.de, Repo https://github.com/Hugobros3/shady"/> <id value="36" vendor="Taichi Graphics" tool="Taichi" comment="Contact Rendong Liang rendongliang@taichi.graphics, Repo https://github.com/taichi-dev/taichi"/> - <unused start="37" end="0xFFFF" comment="Tool ID range reservable for future use by vendors"/> + <id value="37" vendor="heroseh" tool="Hero C Compiler" comment="https://github.com/heroseh/hcc"/> + <unused start="38" end="0xFFFF" comment="Tool ID range reservable for future use by vendors"/> </ids> <!-- SECTION: SPIR-V Opcodes and Enumerants --> diff --git a/include/spirv/unified1/spirv.core.grammar.json b/include/spirv/unified1/spirv.core.grammar.json index ec4844e..21fdc41 100644 --- a/include/spirv/unified1/spirv.core.grammar.json +++ b/include/spirv/unified1/spirv.core.grammar.json @@ -10065,6 +10065,10 @@ { "enumerant" : "SYCL", "value" : 7 + }, + { + "enumerant" : "C", + "value" : 8 } ] }, |