Home
last modified time | relevance | path

Searched refs:getShaderVersion (Results 1 – 12 of 12) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
Dglslang.l254 if (context->getShaderVersion() < 300) {
263 if (context->getShaderVersion() >= 300)
425 TSymbol* symbol = yyextra->symbolTable.find(yytext, yyextra->getShaderVersion()); in check_type()
449 if (context->getShaderVersion() < 300) in ES2_reserved_ES3_keyword()
461 if (context->getShaderVersion() >= 300) in ES2_keyword_ES3_reserved()
475 if (context->getShaderVersion() < 300) in ES2_identifier_ES3_keyword()
488 if (context->getShaderVersion() < 300) in uint_constant()
505 if (context->getShaderVersion() < 300) in floatsuffix_check()
DCompiler.h88 int getShaderVersion() const { return shaderVersion; } in getShaderVersion() function
Dglslang_lex.cpp2023 if (context->getShaderVersion() < 300) {
2034 if (context->getShaderVersion() >= 300)
3657 TSymbol* symbol = yyextra->symbolTable.find(yytext, yyextra->getShaderVersion()); in check_type()
3681 if (context->getShaderVersion() < 300) in ES2_reserved_ES3_keyword()
3693 if (context->getShaderVersion() >= 300) in ES2_keyword_ES3_reserved()
3707 if (context->getShaderVersion() < 300) in ES2_identifier_ES3_keyword()
3720 if (context->getShaderVersion() < 300) in uint_constant()
3737 if (context->getShaderVersion() < 300) in floatsuffix_check()
DCompiler.cpp138 shaderVersion = parseContext.getShaderVersion(); in compile()
DParseHelper.cpp1834 static_cast<TFunction *>(symbolTable.find(function.getMangledName(), getShaderVersion())); in addFunctionPrototypeDeclaration()
1909 const TSymbol *builtIn = symbolTable.findBuiltIn(function->getMangledName(), getShaderVersion()); in parseFunctionPrototype()
1917 …evDec = static_cast<TFunction *>(symbolTable.find(function->getMangledName(), getShaderVersion())); in parseFunctionPrototype()
2014 …evDec = static_cast<TFunction *>(symbolTable.find(function->getMangledName(), getShaderVersion())); in parseFunctionDeclarator()
2015 if(getShaderVersion() >= 300 && symbolTable.hasUnmangledBuiltIn(function->getName().c_str())) in parseFunctionDeclarator()
2043 TSymbol *prevSym = symbolTable.find(function->getName(), getShaderVersion()); in parseFunctionDeclarator()
DValidateLimitations.cpp432 TSymbol* symbol = symbolTable.find(node->getName(), GetGlobalParseContext()->getShaderVersion()); in validateFunctionCall()
Dglslang.y146 if (context->getShaderVersion() != 100) { \
153 if (context->getShaderVersion() != 300) { \
869 if (context->getShaderVersion() != 300) {
DParseHelper.h75 int getShaderVersion() const { return mShaderVersion; } in getShaderVersion() function
DOutputASM.h190 int getShaderVersion() const { return shaderVersion; } in getShaderVersion() function
Dglslang_tab.cpp382 if (context->getShaderVersion() != 100) { \
389 if (context->getShaderVersion() != 300) { \
3476 if (context->getShaderVersion() != 300) { in yyparse()
/external/swiftshader/src/OpenGL/libGLESv2/
DShader.cpp235 shaderVersion = compiler->getShaderVersion(); in compile()
DProgram.cpp1669 if(vertexShader->getShaderVersion() >= 300) in linkAttribute()