Home
last modified time | relevance | path

Searched refs:TCompiler (Results 1 – 8 of 8) sorted by relevance

/external/deqp-deps/glslang/glslang/Include/
DShHandle.h50 class TCompiler; variable
61 virtual TCompiler* getAsCompiler() { return 0; } in getAsCompiler()
89 class TCompiler : public TShHandleBase {
91TCompiler(EShLanguage l, TInfoSink& sink) : infoSink(sink) , language(l), haveValidObjectCode(fals… in TCompiler() function
92 virtual ~TCompiler() { } in ~TCompiler()
98 virtual TCompiler* getAsCompiler() { return this; } in getAsCompiler()
103 TCompiler& operator=(TCompiler&);
112 typedef glslang::TVector<TCompiler*> TCompilerList;
164 TCompiler* ConstructCompiler(EShLanguage, int);
172 void DeleteCompiler(TCompiler*);
/external/swiftshader/src/OpenGL/compiler/
DCompiler.cpp74 TCompiler::TCompiler(GLenum type) in TCompiler() function in TCompiler
82 TCompiler::~TCompiler() in ~TCompiler()
88 bool TCompiler::Init(const ShBuiltInResources& resources) in Init()
102 bool TCompiler::compile(const char* const shaderStrings[], in compile()
165 bool TCompiler::InitBuiltInSymbolTable(const ShBuiltInResources &resources) in InitBuiltInSymbolTable()
203 void TCompiler::clearResults() in clearResults()
210 bool TCompiler::validateCallDepth(TIntermNode *root, TInfoSink &infoSink) in validateCallDepth()
242 bool TCompiler::validateLimitations(TIntermNode* root) { in validateLimitations()
248 const TExtensionBehavior& TCompiler::getExtensionBehavior() const in getExtensionBehavior()
DCompiler.h75 class TCompiler
78 TCompiler(GLenum shaderType);
79 virtual ~TCompiler();
80 virtual TCompiler* getAsCompiler() { return this; } in getAsCompiler()
DTranslatorASM.h26 class TranslatorASM : public TCompiler
DTranslatorASM.cpp19 TranslatorASM::TranslatorASM(glsl::Shader *shaderObject, GLenum shaderType) : TCompiler(shaderType)… in TranslatorASM()
/external/deqp-deps/glslang/glslang/GenericCodeGen/
DCodeGen.cpp42 class TGenericCompiler : public TCompiler {
44 … TGenericCompiler(EShLanguage l, int dOptions) : TCompiler(l, infoSink), debugOptions(dOptions) { } in TGenericCompiler()
55 TCompiler* ConstructCompiler(EShLanguage language, int debugOptions) in ConstructCompiler()
63 void DeleteCompiler(TCompiler* compiler) in DeleteCompiler()
/external/deqp-deps/glslang/glslang/Public/
DShaderLang.h350 class TCompiler; variable
573 TCompiler* compiler;
/external/deqp-deps/glslang/glslang/MachineIndependent/
DShaderLang.cpp764 TCompiler* compiler, in ProcessDeferred()
1195 TCompiler* compiler, in PreprocessDeferred()
1232 TCompiler* compiler, in CompileDeferred()
1413 TCompiler* compiler = base->getAsCompiler(); in ShCompile()
1669 class TDeferredCompiler : public TCompiler {
1671 TDeferredCompiler(EShLanguage s, TInfoSink& i) : TCompiler(s, i) { } in TDeferredCompiler()