Home
last modified time | relevance | path

Searched refs:getMatrixCols (Results 1 – 13 of 13) sorted by relevance

/external/deqp-deps/glslang/glslang/MachineIndependent/
DIntermediate.cpp406 child->getMatrixCols(), in addUnaryMath()
850 …TType newType(convertTo, EvqTemporary, node->getVectorSize(), node->getMatrixCols(), node->getMatr… in createConversion()
1408 …if ((sourceType.getMatrixCols() != type.getMatrixCols() || sourceType.getMatrixRows() != type.getM… in addShapeConversion()
1409 …sourceType.getMatrixCols() >= type.getMatrixCols() && sourceType.getMatrixRows() >= type.getMatrix… in addShapeConversion()
1413 …if (type.getVectorSize() == 4 && sourceType.getMatrixCols() == 2 && sourceType.getMatrixRows() == … in addShapeConversion()
1427 … if (sourceType.getVectorSize() == 4 && type.getMatrixCols() == 2 && type.getMatrixRows() == 2) in addShapeConversion()
2015 switch (type.getMatrixCols()) { in mapTypeToConstructorOp()
2053 if (type.getMatrixCols()) { in mapTypeToConstructorOp()
2054 switch (type.getMatrixCols()) { in mapTypeToConstructorOp()
2091 if (type.getMatrixCols()) { in mapTypeToConstructorOp()
[all …]
DparseConst.cpp87 matrixCols = node->getType().getMatrixCols(); in visitAggregate()
158 … if (r < node->getType().getMatrixRows() && c < node->getType().getMatrixCols()) { in visitConstantUnion()
DParseContextBase.cpp304 if (index >= type.getMatrixCols()) { in checkIndex()
306 index = type.getMatrixCols() - 1; in checkIndex()
DConstant.cpp121 newComps = rightNode->getMatrixCols() * getMatrixRows(); in fold()
127 newComps = rightNode->getMatrixCols(); in fold()
168 for (int column = 0; column < rightNode->getMatrixCols(); column++) { in fold()
175 …e.shallowCopy(TType(getType().getBasicType(), EvqConst, 0, rightNode->getMatrixCols(), getMatrixRo… in fold()
277 for (int i = 0; i < rightNode->getMatrixCols(); i++) { in fold()
284 returnType.shallowCopy(TType(getBasicType(), EvqConst, rightNode->getMatrixCols())); in fold()
Dreflection.cpp920 switch (type.getMatrixCols()) { in mapToGlType()
944 switch (type.getMatrixCols()) { in mapToGlType()
968 switch (type.getMatrixCols()) { in mapToGlType()
DlinkValidate.cpp1328 return type.getMatrixCols() * computeTypeLocationSize(columnType, stage); in computeTypeLocationSize()
1465 numComponents = type.getMatrixCols() * type.getMatrixRows(); in computeTypeXfbSize()
1663 size = stride * type.getMatrixCols(); in getBaseAlignment()
1739 size = stride * type.getMatrixCols(); in getScalarAlignment()
DSymbolTable.cpp163 mangledName += static_cast<char>('0' + getMatrixCols()); in buildMangledName()
DParseHelper.cpp1559 length = type.getMatrixCols(); in handleLengthMethod()
7064 if (type.getMatrixCols() != (int)initList->getSequence().size()) { in convertInitializerList()
7069 for (int i = 0; i < type.getMatrixCols(); ++i) { in convertInitializerList()
/external/deqp-deps/glslang/glslang/HLSL/
DhlslParseHelper.cpp991 …if (! parseMatrixSwizzleSelector(loc, field, base->getMatrixCols(), base->getMatrixRows(), selecto… in handleDotDereference()
4814 typedArg->getMatrixCols(), in decomposeIntrinsic()
4883 arg0->getType().getMatrixCols(), in decomposeIntrinsic()
4890 std::max(arg0->getType().getMatrixCols(), 1) * in decomposeIntrinsic()
5293 … const TType boolType(EbtBool, EvqTemporary, arg0->getVectorSize(), arg0->getMatrixCols(), in decomposeIntrinsic()
5613 if (arg0->getVectorSize() < arg1->getMatrixCols()) { in addGenMulArgumentConversion()
5618 } else if (arg0->getVectorSize() > arg1->getMatrixCols()) { in addGenMulArgumentConversion()
5621 arg1->getMatrixCols()); in addGenMulArgumentConversion()
5629 0, arg0->getMatrixCols(), arg1->getVectorSize()); in addGenMulArgumentConversion()
5640 if (arg0->getMatrixRows() > arg1->getMatrixCols()) { in addGenMulArgumentConversion()
[all …]
DhlslGrammar.cpp1341 if ((txType.getMatrixCols() * txType.getMatrixRows()) > 4) { in acceptTextureType()
/external/deqp-deps/glslang/glslang/Include/
Dintermediate.h1140 virtual int getMatrixCols() const { return type.getMatrixCols(); } in getMatrixCols() function
DTypes.h1678 virtual int getMatrixCols() const { return matrixCols; } in getMatrixCols() function
/external/deqp-deps/glslang/SPIRV/
DGlslangToSpv.cpp3902 spvType = builder.makeMatrixType(spvType, type.getMatrixCols(), type.getMatrixRows()); in convertGlslangToSpvType()
8591 for (int col = 0; col < glslangType.getMatrixCols(); ++col) in createSpvConstantFromConstUnionArray()