Searched refs:getMatrixCols (Results 1 – 13 of 13) sorted by relevance
/third_party/glslang/glslang/MachineIndependent/ |
D | Intermediate.cpp | 406 child->getMatrixCols(), in addUnaryMath() 854 …TType newType(convertTo, EvqTemporary, node->getVectorSize(), node->getMatrixCols(), node->getMatr… in createConversion() 1412 …if ((sourceType.getMatrixCols() != type.getMatrixCols() || sourceType.getMatrixRows() != type.getM… in addShapeConversion() 1413 …sourceType.getMatrixCols() >= type.getMatrixCols() && sourceType.getMatrixRows() >= type.getMatrix… in addShapeConversion() 1417 …if (type.getVectorSize() == 4 && sourceType.getMatrixCols() == 2 && sourceType.getMatrixRows() == … in addShapeConversion() 1431 … if (sourceType.getVectorSize() == 4 && type.getMatrixCols() == 2 && type.getMatrixRows() == 2) in addShapeConversion() 2019 switch (type.getMatrixCols()) { in mapTypeToConstructorOp() 2057 if (type.getMatrixCols()) { in mapTypeToConstructorOp() 2058 switch (type.getMatrixCols()) { in mapTypeToConstructorOp() 2095 if (type.getMatrixCols()) { in mapTypeToConstructorOp() [all …]
|
D | parseConst.cpp | 87 matrixCols = node->getType().getMatrixCols(); in visitAggregate() 158 … if (r < node->getType().getMatrixRows() && c < node->getType().getMatrixCols()) { in visitConstantUnion()
|
D | Constant.cpp | 92 newComps = rightNode->getMatrixCols() * getMatrixRows(); in fold() 98 newComps = rightNode->getMatrixCols(); in fold() 139 for (int column = 0; column < rightNode->getMatrixCols(); column++) { in fold() 146 …e.shallowCopy(TType(getType().getBasicType(), EvqConst, 0, rightNode->getMatrixCols(), getMatrixRo… in fold() 248 for (int i = 0; i < rightNode->getMatrixCols(); i++) { in fold() 255 returnType.shallowCopy(TType(getBasicType(), EvqConst, rightNode->getMatrixCols())); in fold()
|
D | ParseContextBase.cpp | 307 if (index >= type.getMatrixCols()) { in checkIndex() 309 index = type.getMatrixCols() - 1; in checkIndex()
|
D | reflection.cpp | 920 switch (type.getMatrixCols()) { in mapToGlType() 944 switch (type.getMatrixCols()) { in mapToGlType() 968 switch (type.getMatrixCols()) { in mapToGlType()
|
D | SymbolTable.cpp | 164 mangledName += static_cast<char>('0' + getMatrixCols()); in buildMangledName()
|
D | linkValidate.cpp | 1835 return type.getMatrixCols() * computeTypeLocationSize(columnType, stage); in computeTypeLocationSize() 1972 numComponents = type.getMatrixCols() * type.getMatrixRows(); in computeTypeXfbSize() 2170 size = stride * type.getMatrixCols(); in getBaseAlignment() 2246 size = stride * type.getMatrixCols(); in getScalarAlignment()
|
D | ParseHelper.cpp | 1791 length = type.getMatrixCols(); in handleLengthMethod() 7688 if (type.getMatrixCols() != (int)initList->getSequence().size()) { in convertInitializerList() 7693 for (int i = 0; i < type.getMatrixCols(); ++i) { in convertInitializerList()
|
/third_party/glslang/glslang/HLSL/ |
D | hlslParseHelper.cpp | 991 …if (! parseMatrixSwizzleSelector(loc, field, base->getMatrixCols(), base->getMatrixRows(), selecto… in handleDotDereference() 4904 typedArg->getMatrixCols(), in decomposeIntrinsic() 4973 arg0->getType().getMatrixCols(), in decomposeIntrinsic() 4980 std::max(arg0->getType().getMatrixCols(), 1) * in decomposeIntrinsic() 5383 … const TType boolType(EbtBool, EvqTemporary, arg0->getVectorSize(), arg0->getMatrixCols(), in decomposeIntrinsic() 5703 if (arg0->getVectorSize() < arg1->getMatrixCols()) { in addGenMulArgumentConversion() 5708 } else if (arg0->getVectorSize() > arg1->getMatrixCols()) { in addGenMulArgumentConversion() 5711 arg1->getMatrixCols()); in addGenMulArgumentConversion() 5719 0, arg0->getMatrixCols(), arg1->getVectorSize()); in addGenMulArgumentConversion() 5730 if (arg0->getMatrixRows() > arg1->getMatrixCols()) { in addGenMulArgumentConversion() [all …]
|
D | hlslGrammar.cpp | 1343 if ((txType.getMatrixCols() * txType.getMatrixRows()) > 4) { in acceptTextureType()
|
/third_party/glslang/glslang/Include/ |
D | intermediate.h | 1152 virtual int getMatrixCols() const { return type.getMatrixCols(); } in getMatrixCols() function
|
D | Types.h | 1842 virtual int getMatrixCols() const { return matrixCols; } in getMatrixCols() function
|
/third_party/glslang/SPIRV/ |
D | GlslangToSpv.cpp | 4376 spvType = builder.makeMatrixType(spvType, type.getMatrixCols(), type.getMatrixRows()); in convertGlslangToSpvType() 9269 for (int col = 0; col < glslangType.getMatrixCols(); ++col) in createSpvConstantFromConstUnionArray()
|