/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/hlsl/ |
hlslParseables.h | 51 void initialize(int version, EProfile, const SpvVersion& spvVersion); 52 void initialize(const TBuiltInResource& resources, int version, EProfile, const SpvVersion& spvVersion, EShLanguage); 54 void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TSymbolTable& symbolTable); 56 void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TSymbolTable& symbolTable, const TBuiltInResource &resources);
|
hlslParseHelper.h | 47 int version, EProfile, const SpvVersion& spvVersion, EShLanguage, TInfoSink&,
|
hlslParseHelper.cpp | 52 int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TInfoSink& infoSink, 54 TParseContextBase(symbolTable, interm, version, profile, spvVersion, language, infoSink, forwardCompatible, messages), [all...] |
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/ |
Initialize.h | 64 virtual void initialize(int version, EProfile, const SpvVersion& spvVersion) = 0; 65 virtual void initialize(const TBuiltInResource& resources, int version, EProfile, const SpvVersion& spvVersion, EShLanguage) = 0; 69 virtual void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TSymbolTable& symbolTable) = 0; 71 virtual void identifyBuiltIns(int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TSymbolTable& symbolTable, const TBuiltInResource &resources) = 0; 88 void initialize(int version, EProfile, const SpvVersion& spvVersion); [all...] |
ShaderLang.cpp | 116 int MapSpvVersionToIndex(const SpvVersion& spvVersion) 120 if (spvVersion.openGl > 0) 122 else if (spvVersion.vulkan > 0) 172 bool InitializeSymbolTable(const TString& builtIns, int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, TInfoSink& infoSink, 177 TParseContext parseContext(symbolTable, intermediate, true, version, profile, spvVersion, language, infoSink); 220 void InitializeStageSymbolTable(TBuiltInParseables& builtInParseables, int version, EProfile profile, const SpvVersion& spvVersion, 224 InitializeSymbolTable(builtInParseables.getStageString(language), version, profile, spvVersion, language, infoSink, *symbolTables[language]) [all...] |
parseVersions.h | 57 const SpvVersion& spvVersion, EShLanguage language, TInfoSink& infoSink, 60 spvVersion(spvVersion), forwardCompatible(forwardCompatible), 117 SpvVersion spvVersion;
|
Versions.cpp | 301 if (spvVersion.vulkan > 0) { 303 snprintf(numberBuf, numberBufSize, "%d", spvVersion.vulkan); 308 if (spvVersion.openGl > 0) { 310 snprintf(numberBuf, numberBufSize, "%d", spvVersion.openGl); 666 if (spvVersion.spv != 0) 673 if (spvVersion.vulkan >= 100) 680 if (spvVersion.vulkan == 0) 687 if (spvVersion.spv == 0)
|
Initialize.cpp | 66 inline bool IncludeLegacy(int version, EProfile profile, const SpvVersion& spvVersion) 68 return profile != EEsProfile && (version <= 130 || (spvVersion.spv == 0 && ARBCompatibility) || profile == ECompatibilityProfile); 117 void TBuiltIns::initialize(int version, EProfile profile, const SpvVersion& spvVersion) [all...] |
ParseHelper.h | 77 EProfile profile, const SpvVersion& spvVersion, EShLanguage language, 79 : TParseVersions(interm, version, profile, spvVersion, language, infoSink, forwardCompatible, messages), 154 TParseContext(TSymbolTable&, TIntermediate&, bool parsingBuiltins, int version, EProfile, const SpvVersion& spvVersion, EShLanguage, TInfoSink&,
|
localintermediate.h | 157 void setSpv(const SpvVersion& s) { spvVersion = s; } 158 const SpvVersion& getSpv() const { return spvVersion; } 355 SpvVersion spvVersion;
|
Scan.cpp | [all...] |
ParseHelper.cpp | 52 int version, EProfile profile, const SpvVersion& spvVersion, EShLanguage language, 54 TParseContextBase(symbolTable, interm, version, profile, spvVersion, language, infoSink, forwardCompatible, messages), 107 globalUniformDefaults.layoutPacking = spvVersion.spv != 0 ? ElpStd140 : ElpShared; 111 globalBufferDefaults.layoutPacking = spvVersion.spv != 0 ? ElpStd430 : ElpShared; [all...] |