Searched defs:basicType (Results 1 - 16 of 16) sorted by relevance

/external/deqp/framework/opengl/
H A DgluVarType.cpp42 VarType::VarType (DataType basicType, Precision precision) argument
45 m_data.basic.type = basicType;
H A DgluVarTypeUtil.hpp294 DataType basicType = curType.getBasicType(); local
296 if (isDataTypeMatrix(basicType))
298 else if (isDataTypeVector(basicType))
349 DataType basicType = curType->getBasicType();
353 if (!isDataTypeMatrix(basicType))
356 basicType = getDataTypeFloatVec(getDataTypeMatrixNumRows(basicType));
362 if (!isDataTypeVector(basicType))
365 basicType = getDataTypeScalarType(basicType);
396 DataType basicType = curType->getBasicType(); local
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fSeparateShaderTests.cpp204 const DataType basicType = input.varType.getBasicType(); local
207 switch (getDataTypeScalarType(basicType))
215 DataType floatType = getDataTypeFloatScalars(basicType);
224 if (isDataTypeScalarOrVector(basicType))
226 switch (getDataTypeScalarSize(basicType))
244 else if (isDataTypeMatrix(basicType))
246 int rows = getDataTypeMatrixNumRows(basicType);
247 int columns = getDataTypeMatrixNumColumns(basicType);
H A Des31fShaderSharedVarTests.cpp74 SharedBasicVarCase (Context& context, const char* name, DataType basicType, Precision precision, const tcu::UVec3& workGroupSize);
92 static std::string getBasicCaseDescription (DataType basicType, Precision precision, const tcu::UVec3& workGroupSize) argument
97 str << getDataTypeName(basicType) << ", work group size = " << workGroupSize;
101 SharedBasicVarCase::SharedBasicVarCase (Context& context, const char* name, DataType basicType, Precision precision, const tcu::UVec3& workGroupSize) argument
102 : TestCase (context, name, getBasicCaseDescription(basicType, precision, workGroupSize).c_str())
103 , m_basicType (basicType)
368 for (int basicType = TYPE_FLOAT; basicType <= TYPE_BOOL_VEC4; basicType++)
370 if (glu::isDataTypeBoolOrBVec(DataType(basicType)))
[all...]
H A Des31fShaderIntegerFunctionTests.cpp81 const glu::DataType basicType = varValue.type.getBasicType(); local
82 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
83 const int numComponents = glu::getDataTypeScalarSize(basicType);
86 str << glu::getDataTypeName(basicType) << "(";
H A Des31fShaderCommonFunctionTests.cpp367 const glu::DataType basicType = varValue.type.getBasicType(); local
368 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
369 const int numComponents = glu::getDataTypeScalarSize(basicType);
372 str << glu::getDataTypeName(basicType) << "(";
H A Des31fProgramUniformTests.cpp239 const glu::DataType basicType = type.getBasicType(); local
240 if (glu::isDataTypeSampler(basicType) && std::find(dst.begin(), dst.end(), basicType) == dst.end())
241 dst.push_back(basicType);
H A Des31fSSBOLayoutCase.cpp377 glu::DataType basicType = type.getBasicType(); local
379 if (glu::isDataTypeMatrix(basicType))
382 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
383 : glu::getDataTypeMatrixNumRows(basicType);
389 return getDataTypeByteAlignment(basicType);
418 glu::DataType basicType = type.getBasicType(); local
420 if (glu::isDataTypeMatrix(basicType))
423 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
424 : glu::getDataTypeMatrixNumRows(basicType);
430 return getDataTypeByteAlignment(basicType);
482 const glu::DataType basicType = type.getBasicType(); local
841 getCompareDependencies(std::set<glu::DataType>& compareFuncs, glu::DataType basicType) argument
979 generateImmMatrixSrc(std::ostream& src, glu::DataType basicType, int matrixStride, bool isRowMajor, const void* valuePtr) argument
1007 generateImmScalarVectorSrc(std::ostream& src, glu::DataType basicType, const void* valuePtr) argument
1156 const glu::DataType basicType = curType.getBasicType(); local
1240 const glu::DataType basicType = curType.getBasicType(); local
[all...]
/external/mesa3d/src/mesa/main/
H A Duniform_query.cpp385 log_uniform(const void *values, enum glsl_base_type basicType, argument
405 switch (basicType) {
583 enum glsl_base_type basicType; local
598 basicType = GLSL_TYPE_FLOAT;
602 basicType = GLSL_TYPE_FLOAT;
606 basicType = GLSL_TYPE_FLOAT;
610 basicType = GLSL_TYPE_FLOAT;
614 basicType = GLSL_TYPE_UINT;
618 basicType = GLSL_TYPE_UINT;
622 basicType
[all...]
/external/deqp/modules/glshared/
H A DglsUniformBlockCase.hpp76 VarType (glu::DataType basicType, deUint32 flags);
86 glu::DataType getBasicType (void) const { return m_data.basicType; }
109 glu::DataType basicType; member in union:deqp::gls::ub::VarType::Data
H A DglsShaderExecUtil.cpp496 const glu::DataType basicType = symbol.varType.getBasicType(); local
497 const int vecSize = glu::getDataTypeScalarSize(basicType);
499 if (glu::isDataTypeFloatOrVec(basicType))
501 else if (glu::isDataTypeIntOrIVec(basicType))
503 else if (glu::isDataTypeUintOrUVec(basicType))
505 else if (glu::isDataTypeMatrix(basicType))
507 int numRows = glu::getDataTypeMatrixNumRows(basicType);
508 int numCols = glu::getDataTypeMatrixNumColumns(basicType);
686 const glu::DataType basicType = outputType.getBasicType(); local
687 const int numComps = glu::getDataTypeNumComponents(basicType);
741 const glu::DataType basicType = symbol.varType.getBasicType(); local
963 const glu::DataType basicType = symbol.varType.getBasicType(); local
1014 const glu::DataType basicType = varType.getBasicType(); local
1041 const glu::DataType basicType = varType.getBasicType(); local
[all...]
H A DglsUniformBlockCase.cpp128 VarType::VarType (glu::DataType basicType, deUint32 flags) argument
132 m_data.basicType = basicType;
420 glu::DataType basicType = type.getBasicType(); local
422 if (glu::isDataTypeMatrix(basicType))
425 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
426 : glu::getDataTypeMatrixNumRows(basicType);
431 return getDataTypeByteAlignment(basicType);
474 glu::DataType basicType = type.getBasicType(); local
478 entry.type = basicType;
719 getCompareDependencies(std::set<glu::DataType>& compareFuncs, glu::DataType basicType) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DType.java247 private final int basicType; field in class:Type
425 * @param basicType basic type corresponding to this type; one of the
429 private Type(String descriptor, int basicType, int newAt) { argument
434 if ((basicType < 0) || (basicType >= BT_COUNT)) {
435 throw new IllegalArgumentException("bad basicType");
443 this.basicType = basicType;
456 * @param basicType basic type corresponding to this type; one of the
459 private Type(String descriptor, int basicType) { argument
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderCommonFunctionTests.cpp294 const glu::DataType basicType = varValue.type.getBasicType(); local
295 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
296 const int numComponents = glu::getDataTypeScalarSize(basicType);
299 str << glu::getDataTypeName(basicType) << "(";
H A Des3fUniformApiTests.cpp235 const glu::DataType basicType = type.getBasicType(); local
236 if (glu::isDataTypeSampler(basicType) && std::find(dst.begin(), dst.end(), basicType) == dst.end())
237 dst.push_back(basicType);
285 const glu::DataType basicType = (glu::DataType)s_testDataTypes[rnd.getInt(0, DE_LENGTH_OF_ARRAY(s_testDataTypes)-1)];
286 const glu::Precision precision = glu::isDataTypeBoolOrBVec(basicType) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
287 return isArray ? glu::VarType(glu::VarType(basicType, precision), rnd.getInt(1, 5)) : glu::VarType(basicType, precision);
/external/deqp/modules/gles2/functional/
H A Des2fUniformApiTests.cpp175 const glu::DataType basicType = type.getBasicType(); local
176 if (glu::isDataTypeSampler(basicType) && std::find(dst.begin(), dst.end(), basicType) == dst.end())
177 dst.push_back(basicType);
225 const glu::DataType basicType = (glu::DataType)s_testDataTypes[rnd.getInt(0, DE_LENGTH_OF_ARRAY(s_testDataTypes)-1)];
226 const glu::Precision precision = glu::isDataTypeBoolOrBVec(basicType) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
227 return isArray ? glu::VarType(glu::VarType(basicType, precision), rnd.getInt(1, 5)) : glu::VarType(basicType, precision);

Completed in 1547 milliseconds