Searched refs:structPtr (Results 1 – 10 of 10) sorted by relevance
/external/deqp/framework/opengl/ |
D | gluVarType.cpp | 57 VarType::VarType (const StructType* structPtr) in VarType() argument 60 m_data.structPtr = structPtr; in VarType() 101 …for (StructType::ConstIterator iter = m_data.structPtr->begin(); iter != m_data.structPtr->end(); … in getScalarSize() 128 return m_data.structPtr == other.m_data.structPtr; in operator ==() 378 const StructType* structPtr = curType->getStructPtr(); in operator <<() local 380 if (structPtr->hasTypeName()) in operator <<() 381 str << structPtr->getTypeName(); in operator <<() 383 str << declare(structPtr, decl.indentLevel); // Generate inline declaration. in operator <<() 408 if (decl.structPtr->hasTypeName()) in operator <<() 409 str << " " << decl.structPtr->getTypeName(); in operator <<() [all …]
|
D | gluVarType.hpp | 55 explicit VarType (const StructType* structPtr); //!< Struct type constructor. 68 …const StructType* getStructPtr (void) const { DE_ASSERT(isStructType()); return m_data.structPtr; … in getStructPtr() 110 const StructType* structPtr; member 296 …DeclareStructTypePtr (const StructType* structPtr_, int indentLevel_) : structPtr(structPtr_), ind… in DeclareStructTypePtr() 298 const StructType* structPtr; member 327 …pePtr declare (const StructType* structPtr, int indentLevel = 0) { return decl::DeclareStruc… in declare() argument
|
/external/deqp/modules/glshared/ |
D | glsUniformBlockCase.hpp | 78 explicit VarType (const StructType* structPtr); 91 const StructType& getStruct (void) const { return *m_data.structPtr; } in getStruct() 115 const StructType* structPtr; member
|
D | glsUniformBlockCase.cpp | 143 VarType::VarType (const StructType* structPtr) in VarType() argument 147 m_data.structPtr = structPtr; in VarType()
|
/external/deqp/external/vulkancts/modules/vulkan/ubo/ |
D | vktUniformBlockCase.hpp | 73 explicit VarType (const StructType* structPtr); 86 const StructType& getStruct (void) const { return *m_data.structPtr; } in getStruct() 110 const StructType* structPtr; member
|
D | vktUniformBlockCase.cpp | 86 VarType::VarType (const StructType* structPtr) in VarType() argument 90 m_data.structPtr = structPtr; in VarType()
|
/external/deqp/external/vulkancts/modules/vulkan/ssbo/ |
D | vktSSBOLayoutCase.cpp | 972 const StructType* structPtr = curType.getStructPtr(); in getAPIName() local 974 name << "." << structPtr->getMember(pathComp->index).getName(); in getAPIName() 1013 const StructType* structPtr = curType.getStructPtr(); in getShaderName() local 1015 name << "." << structPtr->getMember(pathComp->index).getName(); in getShaderName()
|
/external/deqp/modules/gles3/functional/ |
D | es3fTransformFeedbackTests.cpp | 365 const glu::StructType* structPtr = *structIter; in genShaderSources() local 366 if (structPtr->hasTypeName()) in genShaderSources() 367 str << glu::declare(structPtr) << ";\n"; in genShaderSources()
|
/external/deqp/modules/gles31/functional/ |
D | es31fSSBOLayoutCase.cpp | 1057 const StructType* structPtr = curType.getStructPtr(); in getAPIName() local 1059 name << "." << structPtr->getMember(pathComp->index).getName(); in getAPIName() 1098 const StructType* structPtr = curType.getStructPtr(); in getShaderName() local 1100 name << "." << structPtr->getMember(pathComp->index).getName(); in getShaderName()
|
D | es31fProgramInterfaceQueryTests.cpp | 688 …glu::StructType* structPtr = new glu::StructType(("StructType" + de::toString(structNdx++)).c_str(… in generateProgramDefinitionFromResource() local 689 structPtr->addMember(variable.name.c_str(), variable.varType); in generateProgramDefinitionFromResource() 691 variable = glu::VariableDeclaration(glu::VarType(structPtr), "target"); in generateProgramDefinitionFromResource() 1736 glu::StructType* structPtr = new glu::StructType("StructType"); in init() local 1737 …structPtr->addMember("structMemberBasic", glu::VarType(glu::TYPE_FLOAT_VEC4, glu::PRECISION_HIGHP)… in init() 1738 …structPtr->addMember("structMemberArray", glu::VarType(glu::VarType(glu::TYPE_FLOAT, glu::PRECISIO… in init() 1740 ….variables.push_back(glu::VariableDeclaration(glu::VarType(glu::VarType(structPtr), 2), "blockMemb… in init()
|