OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:structType
(Results
1 - 7
of
7
) sorted by null
/external/deqp/modules/glshared/
glsRandomUniformBlockCase.cpp
173
StructType
&
structType
= m_interface.allocStruct((string("s") + genName('A', 'Z', m_structNdx)).c_str());
184
structType
.addMember((string("m") + (char)('A' + ndx)).c_str(), memberTypes[ndx], flags);
187
return VarType(&
structType
);
/external/deqp/framework/opengl/
gluVarType.hpp
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;
294
DeclareStructTypePtr (const
StructType
* structPtr_, int indentLevel_) : structPtr(structPtr_), indentLevel(indentLevel_) {
[
all
...]
/external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinitionUtil.cpp
86
const glu::
StructType
*
structType
= type.getStructPtr();
87
for (int ndx = 0; ndx <
structType
->getNumMembers(); ++ndx)
88
generateVariableTypeResourceNames(resources, name + "." +
structType
->getMember(ndx).getName(),
structType
->getMember(ndx).getType(), childFlags);
157
bool operator() (const glu::
StructType
* type) { return type->hasTypeName() && (deStringEqual(m_name, type->getTypeName()) == DE_TRUE); }
162
static void collectNamedStructureDefinitions (std::vector<const glu::
StructType
*>& dst, const glu::VarType& type)
173
std::vector<const glu::
StructType
*>::iterator where = std::find_if(dst.begin(), dst.end(), StructNameEqualPredicate(type.getStructPtr()->getTypeName()));
195
std::vector<const glu::
StructType
*> namedStructs;
[
all
...]
es31fSSBOLayoutTests.cpp
43
using glu::
StructType
;
236
glu::
StructType
&
structType
= m_interface.allocStruct((string("s") + genName('A', 'Z', m_structNdx)).c_str());
242
structType
.addMember((string("m") + (char)('A' + ndx)).c_str(), memberTypes[ndx]);
245
return glu::VarType(&
structType
);
363
StructType
& typeS = m_interface.allocStruct("S");
396
StructType
& typeS = m_interface.allocStruct("S");
431
StructType
& typeS = m_interface.allocStruct("S");
436
StructType
& typeT = m_interface.allocStruct("T");
471
StructType
& typeS = m_interface.allocStruct("S")
[
all
...]
es31fProgramUniformTests.cpp
65
using glu::
StructType
;
227
const
StructType
&
structType
= *type.getStructPtr();
228
for (int i = 0; i <
structType
.getNumMembers(); i++)
229
if (typeContainsMatchingBasicType(
structType
.getMember(i).getType(), predicate))
248
const
StructType
&
structType
= *type.getStructPtr();
249
for (int i = 0; i <
structType
.getNumMembers(); i++)
250
getDistinctSamplerTypes(dst,
structType
.getMember(i).getType());
263
const
StructType
& structType = *type.getStructPtr()
[
all
...]
/external/deqp/modules/gles2/functional/
es2fUniformApiTests.cpp
64
using glu::
StructType
;
163
const
StructType
&
structType
= *type.getStructPtr();
164
for (int i = 0; i <
structType
.getNumMembers(); i++)
165
if (typeContainsMatchingBasicType(
structType
.getMember(i).getType(), predicate))
184
const
StructType
&
structType
= *type.getStructPtr();
185
for (int i = 0; i <
structType
.getNumMembers(); i++)
186
getDistinctSamplerTypes(dst,
structType
.getMember(i).getType());
199
const
StructType
& structType = *type.getStructPtr()
[
all
...]
/external/deqp/modules/gles3/functional/
es3fUniformApiTests.cpp
64
using glu::
StructType
;
223
const
StructType
&
structType
= *type.getStructPtr();
224
for (int i = 0; i <
structType
.getNumMembers(); i++)
225
if (typeContainsMatchingBasicType(
structType
.getMember(i).getType(), predicate))
244
const
StructType
&
structType
= *type.getStructPtr();
245
for (int i = 0; i <
structType
.getNumMembers(); i++)
246
getDistinctSamplerTypes(dst,
structType
.getMember(i).getType());
259
const
StructType
& structType = *type.getStructPtr()
[
all
...]
Completed in 414 milliseconds