diff options
author | Robert Campbell <waprave@gmail.com> | 2022-05-20 11:19:50 -0400 |
---|---|---|
committer | Robert Campbell <waprave@gmail.com> | 2022-05-20 12:13:56 -0400 |
commit | d6b5958869e62edeedec3eb980ab9c922bffb3c7 (patch) | |
tree | 8044a21ac690f33f388f0a2e44f96d9bbaf9cabc /include/spirv/unified1/spirv.h | |
parent | b74edd5537f1f535f427c45f49c8b13e168ca911 (diff) | |
download | SPIRV-Headers-d6b5958869e62edeedec3eb980ab9c922bffb3c7.tar.gz SPIRV-Headers-d6b5958869e62edeedec3eb980ab9c922bffb3c7.tar.bz2 SPIRV-Headers-d6b5958869e62edeedec3eb980ab9c922bffb3c7.zip |
Implemented Beef language header generation
Diffstat (limited to 'include/spirv/unified1/spirv.h')
-rw-r--r-- | include/spirv/unified1/spirv.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/spirv/unified1/spirv.h b/include/spirv/unified1/spirv.h index eca9ca8..38f5587 100644 --- a/include/spirv/unified1/spirv.h +++ b/include/spirv/unified1/spirv.h @@ -31,7 +31,7 @@ /* ** Enumeration tokens for SPIR-V, in various styles: -** C, C++, C++11, JSON, Lua, Python, C#, D +** C, C++, C++11, JSON, Lua, Python, C#, D, Beef ** ** - C will have tokens with a "Spv" prefix, e.g.: SpvSourceLanguageGLSL ** - C++ will have tokens in the "spv" name space, e.g.: spv::SourceLanguageGLSL @@ -41,6 +41,8 @@ ** - C# will use enum classes in the Specification class located in the "Spv" namespace, ** e.g.: Spv.Specification.SourceLanguage.GLSL ** - D will have tokens under the "spv" module, e.g: spv.SourceLanguage.GLSL +** - Beef will use enum classes in the Specification class located in the "Spv" namespace, +** e.g.: Spv.Specification.SourceLanguage.GLSL ** ** Some tokens act like mask values, which can be OR'd together, ** while others are mutually exclusive. The mask-like ones have |