Home | History | Annotate | Download | only in opengl

Lines Matching refs:StructType

36 class StructType;
55 explicit VarType (const StructType* structPtr); //!< Struct type constructor.
68 const StructType* getStructPtr (void) const { DE_ASSERT(isStructType()); return m_data.structPtr; }
110 const StructType* structPtr;
140 class StructType
146 StructType (const char* typeName) : m_typeName(typeName) {}
147 ~StructType (void) {}
162 bool operator== (const StructType& other) const;
163 bool operator!= (const StructType& other) const;
296 DeclareStructTypePtr (const StructType* structPtr_, int indentLevel_) : structPtr(structPtr_), indentLevel(indentLevel_) {}
298 const StructType* structPtr;
304 DeclareStructType (const StructType& structType_, int indentLevel_) : structType(structType_), indentLevel(indentLevel_) {}
306 StructType structType;
327 inline decl::DeclareStructTypePtr declare (const StructType* structPtr, int indentLevel = 0) { return decl::DeclareStructTypePtr (structPtr, indentLevel); }
328 inline decl::DeclareStructType declare (const StructType& structType, int indentLevel = 0) { return decl::DeclareStructType (structType, indentLevel); }