Searched refs:getMatrixRows (Results 1 – 11 of 11) sorted by relevance
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | Intermediate.cpp | 328 child->getMatrixRows(), in addUnaryMath() 712 …Type(convertTo, EvqTemporary, node->getVectorSize(), node->getMatrixCols(), node->getMatrixRows()); in createConversion() 1255 …ype.getMatrixCols() != type.getMatrixCols() || sourceType.getMatrixRows() != type.getMatrixRows())… in addShapeConversion() 1256 …Type.getMatrixCols() >= type.getMatrixCols() && sourceType.getMatrixRows() >= type.getMatrixRows()) in addShapeConversion() 1260 …f (type.getVectorSize() == 4 && sourceType.getMatrixCols() == 2 && sourceType.getMatrixRows() == 2) in addShapeConversion() 1274 … if (sourceType.getVectorSize() == 4 && type.getMatrixCols() == 2 && type.getMatrixRows() == 2) in addShapeConversion() 1862 switch (type.getMatrixRows()) { in mapTypeToConstructorOp() 1870 switch (type.getMatrixRows()) { in mapTypeToConstructorOp() 1878 switch (type.getMatrixRows()) { in mapTypeToConstructorOp() 1901 switch (type.getMatrixRows()) { in mapTypeToConstructorOp() [all …]
|
D | reflection.cpp | 612 switch (type.getMatrixRows()) { in mapToGlType() 619 switch (type.getMatrixRows()) { in mapToGlType() 626 switch (type.getMatrixRows()) { in mapToGlType() 636 switch (type.getMatrixRows()) { in mapToGlType() 643 switch (type.getMatrixRows()) { in mapToGlType() 650 switch (type.getMatrixRows()) { in mapToGlType() 661 switch (type.getMatrixRows()) { in mapToGlType() 668 switch (type.getMatrixRows()) { in mapToGlType() 675 switch (type.getMatrixRows()) { in mapToGlType()
|
D | parseConst.cpp | 88 matrixRows = node->getType().getMatrixRows(); in visitAggregate() 158 … if (r < node->getType().getMatrixRows() && c < node->getType().getMatrixCols()) { in visitConstantUnion() 159 int srcOffset = c * node->getType().getMatrixRows() + r; in visitConstantUnion()
|
D | Constant.cpp | 121 newComps = rightNode->getMatrixCols() * getMatrixRows(); in fold() 124 newComps = getMatrixRows(); in fold() 167 for (int row = 0; row < getMatrixRows(); row++) { in fold() 170 for (int i = 0; i < rightNode->getMatrixRows(); i++) in fold() 171 …sum += leftUnionArray[i * getMatrixRows() + row].getDConst() * rightUnionArray[column * rightNode-… in fold() 172 newConstArray[column * getMatrixRows() + row].setDConst(sum); in fold() 175 …lowCopy(TType(getType().getBasicType(), EvqConst, 0, rightNode->getMatrixCols(), getMatrixRows())); in fold() 262 for (int i = 0; i < getMatrixRows(); i++) { in fold() 265 … sum += leftUnionArray[j*getMatrixRows() + i].getDConst() * rightUnionArray[j].getDConst(); in fold() 270 returnType.shallowCopy(TType(getBasicType(), EvqConst, getMatrixRows())); in fold() [all …]
|
D | SymbolTable.cpp | 152 mangledName += static_cast<char>('0' + getMatrixRows()); in buildMangledName()
|
D | linkValidate.cpp | 1330 numComponents = type.getMatrixCols() * type.getMatrixRows(); in computeTypeXfbSize() 1511 size = stride * type.getMatrixRows(); in getBaseAlignment() 1587 size = stride * type.getMatrixRows(); in getScalarAlignment()
|
/external/deqp-deps/glslang/glslang/Include/ |
D | intermediate.h | 1085 virtual int getMatrixRows() const { return type.getMatrixRows(); } in getMatrixRows() function
|
D | Types.h | 1485 virtual int getMatrixRows() const { return matrixRows; } in getMatrixRows() function
|
/external/deqp-deps/glslang/hlsl/ |
D | hlslParseHelper.cpp | 995 …if (! parseMatrixSwizzleSelector(loc, field, base->getMatrixCols(), base->getMatrixRows(), selecto… in handleDotDereference() 1016 int column = getMatrixComponentsColumn(base->getMatrixRows(), selectors); in handleDotDereference() 4671 typedArg->getMatrixRows(), in decomposeIntrinsic() 4740 arg0->getType().getMatrixRows(), in decomposeIntrinsic() 4747 std::max(arg0->getType().getMatrixRows(), 1); in decomposeIntrinsic() 5150 arg0->getMatrixRows()); in decomposeIntrinsic() 5473 0, arg0->getVectorSize(), arg1->getMatrixRows()); in addGenMulArgumentConversion() 5483 if (arg1->getVectorSize() < arg0->getMatrixRows()) { in addGenMulArgumentConversion() 5488 } else if (arg1->getVectorSize() > arg0->getMatrixRows()) { in addGenMulArgumentConversion() 5491 arg0->getMatrixRows()); in addGenMulArgumentConversion() [all …]
|
D | hlslGrammar.cpp | 1328 if ((txType.getMatrixCols() * txType.getMatrixRows()) > 4) { in acceptTextureType()
|
/external/deqp-deps/glslang/SPIRV/ |
D | GlslangToSpv.cpp | 3086 spvType = builder.makeMatrixType(spvType, type.getMatrixCols(), type.getMatrixRows()); in convertGlslangToSpvType()
|