Searched defs:shaderVersion (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/angle/src/compiler/translator/
H A DOutputESSL.cpp14 int shaderVersion)
15 : TOutputGLSLBase(objSink, clampingStrategy, hashFunction, nameMap, symbolTable, shaderVersion)
9 TOutputESSL(TInfoSinkBase& objSink, ShArrayIndexClampingStrategy clampingStrategy, ShHashFunction64 hashFunction, NameMap& nameMap, TSymbolTable& symbolTable, int shaderVersion) argument
H A DOutputGLSL.cpp14 int shaderVersion)
15 : TOutputGLSLBase(objSink, clampingStrategy, hashFunction, nameMap, symbolTable, shaderVersion)
9 TOutputGLSL(TInfoSinkBase& objSink, ShArrayIndexClampingStrategy clampingStrategy, ShHashFunction64 hashFunction, NameMap& nameMap, TSymbolTable& symbolTable, int shaderVersion) argument
H A DDirectiveHandler.cpp30 int& shaderVersion)
33 mShaderVersion(shaderVersion)
28 TDirectiveHandler(TExtensionBehavior& extBehavior, TDiagnostics& diagnostics, int& shaderVersion) argument
H A DShHandle.h67 int getShaderVersion() const { return shaderVersion; }
156 int shaderVersion; member in class:TCompiler
H A DSymbolTable.cpp106 TSymbol *TSymbolTable::find(const TString &name, int shaderVersion, bool *builtIn, bool *sameScope) argument
113 if (level == ESSL3_BUILTINS && shaderVersion != 300)
115 if (level == ESSL1_BUILTINS && shaderVersion != 100)
130 TSymbol *TSymbolTable::findBuiltIn(const TString &name, int shaderVersion) argument
134 if (level == ESSL3_BUILTINS && shaderVersion != 300)
136 if (level == ESSL1_BUILTINS && shaderVersion != 100)
H A DParseContext.h44 shaderVersion(100),
45 directiveHandler(ext, diagnostics, shaderVersion),
52 int shaderVersion; member in struct:TParseContext
70 int getShaderVersion() const { return shaderVersion; }
120 const TFunction* findFunction(const TSourceLoc& line, TFunction* pfnCall, int shaderVersion, bool *builtIn = 0);
H A DOutputGLSLBase.cpp48 int shaderVersion)
56 mShaderVersion(shaderVersion)
43 TOutputGLSLBase(TInfoSinkBase &objSink, ShArrayIndexClampingStrategy clampingStrategy, ShHashFunction64 hashFunction, NameMap &nameMap, TSymbolTable &symbolTable, int shaderVersion) argument
H A DParseContext.cpp1026 const TFunction* TParseContext::findFunction(const TSourceLoc& line, TFunction* call, int shaderVersion, bool *builtIn) argument
1031 const TSymbol* symbol = symbolTable.find(call->getName(), shaderVersion, builtIn);
1033 symbol = symbolTable.find(call->getMangledName(), shaderVersion, builtIn);
1167 if (shaderVersion < 300)
1424 if (shaderVersion < 300)
2392 if (shaderVersion < 300)
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DShader.cpp320 size_t shaderVersion = 100; local
321 ShGetInfo(compiler, SH_SHADER_VERSION, &shaderVersion);
323 mShaderVersion = static_cast<int>(shaderVersion);
325 if (shaderVersion == 300 && mRenderer->getCurrentClientVersion() < 3)

Completed in 124 milliseconds