Searched refs:interfaceBlock (Results 1 - 10 of 10) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
H A DTypes.h246 primarySize(s0), secondarySize(s1), array(false), arraySize(0), maxArraySize(0), arrayInformationType(0), interfaceBlock(0), layoutQualifier(TLayoutQualifier::create()),
253 primarySize(s0), secondarySize(s1), array(a), arraySize(0), maxArraySize(0), arrayInformationType(0), interfaceBlock(0), layoutQualifier(TLayoutQualifier::create()),
260 primarySize(1), secondarySize(1), array(false), arraySize(0), maxArraySize(0), arrayInformationType(0), interfaceBlock(0), layoutQualifier(TLayoutQualifier::create()),
269 interfaceBlock(interfaceBlockIn), layoutQualifier(layoutQualifierIn), structure(0), mangled(0)
326 return interfaceBlock->objectSize();
344 const TFieldList& fields = isInterfaceBlock() ? interfaceBlock->fields() : structure->fields();
362 const TFieldList& fields = isInterfaceBlock() ? interfaceBlock->fields() : structure->fields();
384 if(interfaceBlock && !isInterfaceBlock())
387 const TFieldList& fieldList = interfaceBlock->fields();
441 TInterfaceBlock *getInterfaceBlock() const { return interfaceBlock; }
545 TInterfaceBlock *interfaceBlock = nullptr; member in class:TType
[all...]
H A DSymbolTable.cpp39 arrayInformationType(0), interfaceBlock(0), layoutQualifier(p.layoutQualifier), structure(0), mangled(0)
80 case EbtInterfaceBlock: mangledName += interfaceBlock->mangledName(); break;
H A DParseHelper.cpp2416 TInterfaceBlock* interfaceBlock = new TInterfaceBlock(&blockName, fieldList, instanceName, arraySize, blockLayoutQualifier); local
2417 TType interfaceBlockType(interfaceBlock, typeQualifier.qualifier, blockLayoutQualifier, arraySize);
2430 fieldType->setInterfaceBlock(interfaceBlock);
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinitionUtil.cpp349 static void writeInterfaceBlock (std::ostringstream& buf, const glu::InterfaceBlock& interfaceBlock)
351 buf << interfaceBlock.layout;
353 if (interfaceBlock.layout != glu::Layout())
356 buf << glu::getStorageName(interfaceBlock.storage) << " " << interfaceBlock.interfaceName << "\n"
359 for (int ndx = 0; ndx < (int)interfaceBlock.variables.size(); ++ndx)
360 buf << glu::indent(1) << interfaceBlock.variables[ndx] << ";\n";
364 if (!interfaceBlock.instanceName.empty())
365 buf << " " << interfaceBlock.instanceName;
367 for (int dimensionNdx = 0; dimensionNdx < (int)interfaceBlock
[all...]
H A Des31fProgramInterfaceDefinitionUtil.hpp176 std::vector<std::string> getProgramInterfaceBlockMemberResourceList (const glu::InterfaceBlock& interfaceBlock);
H A Des31fProgramInterfaceQueryTests.cpp559 glu::InterfaceBlock interfaceBlock;
599 DE_ASSERT(interfaceBlock.storage == glu::STORAGE_LAST);
600 interfaceBlock.storage = qualifier->m_storage;
615 targetLayout = &interfaceBlock.layout;
668 interfaceBlock.dimensions.push_back(arraySize);
705 interfaceBlock.interfaceName = "TargetInterface";
706 interfaceBlock.instanceName = (named) ? ("targetInstance") : ("");
707 interfaceBlock.variables.push_back(variable);
709 if (feedbackTargetSet && !interfaceBlock.instanceName.empty())
710 feedbackTargetVaryingPath.push_back(interfaceBlock
[all...]
/external/skia/src/sksl/
H A DSkSLParser.h161 std::unique_ptr<ASTDeclaration> interfaceBlock(Modifiers mods);
H A DSkSLParser.cpp344 (COMMA parameter)* RPAREN (block | SEMICOLON)) | SEMICOLON) | interfaceBlock) */
354 return this->interfaceBlock(modifiers);
1004 std::unique_ptr<ASTDeclaration> Parser::interfaceBlock(Modifiers mods) { function in class:SkSL::Parser
1010 // we only get into interfaceBlock if we found a top-level identifier which was not a type.
/external/skqp/src/sksl/
H A DSkSLParser.h161 std::unique_ptr<ASTDeclaration> interfaceBlock(Modifiers mods);
H A DSkSLParser.cpp344 (COMMA parameter)* RPAREN (block | SEMICOLON)) | SEMICOLON) | interfaceBlock) */
354 return this->interfaceBlock(modifiers);
1004 std::unique_ptr<ASTDeclaration> Parser::interfaceBlock(Modifiers mods) { function in class:SkSL::Parser
1010 // we only get into interfaceBlock if we found a top-level identifier which was not a type.

Completed in 408 milliseconds