Searched refs:isMatrix (Results 26 - 34 of 34) sorted by relevance

12

/external/deqp/modules/glshared/
H A DglsShaderExecUtil.cpp999 const bool isMatrix = glu::isDataTypeMatrix(basicType); local
1001 const int numVecs = isMatrix ? glu::getDataTypeMatrixNumColumns(basicType) : 1;
1009 const int dstOffset = layout.offset + layout.stride*elemNdx + (isMatrix ? layout.matrixStride*vecNdx : 0);
1026 const bool isMatrix = glu::isDataTypeMatrix(basicType); local
1028 const int numVecs = isMatrix ? glu::getDataTypeMatrixNumColumns(basicType) : 1;
1035 const int srcOffset = layout.offset + layout.stride*elemNdx + (isMatrix ? layout.matrixStride*vecNdx : 0);
H A DglsUniformBlockCase.cpp628 bool isMatrix = glu::isDataTypeMatrix(entry.type); local
629 int numVecs = isMatrix ? (entry.isRowMajor ? glu::getDataTypeMatrixNumRows(entry.type) : glu::getDataTypeMatrixNumColumns(entry.type)) : 1;
642 deUint8* vecPtr = elemPtr + (isMatrix ? vecNdx*entry.matrixStride : 0);
1275 bool isMatrix = glu::isDataTypeMatrix(dstEntry.type); local
1283 if (isMatrix)
1836 bool isMatrix = glu::isDataTypeMatrix(uniform.type); local
1837 int numVecs = isMatrix ? (uniform.isRowMajor ? glu::getDataTypeMatrixNumRows(uniform.type) : glu::getDataTypeMatrixNumColumns(uniform.type)) : 1;
1838 int numComps = isMatrix ? (uniform.isRowMajor ? glu::getDataTypeMatrixNumColumns(uniform.type) : glu::getDataTypeMatrixNumRows(uniform.type)) : glu::getDataTypeScalarSize(uniform.type);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DIntermNode.h280 bool isMatrix() const { return mType.isMatrix(); } function in class:TIntermTyped
H A DintermOut.cpp68 if (isMatrix())
H A DOutputHLSL.cpp231 int elementSize = type.isMatrix() ? type.getCols() : 1;
1692 ASSERT(node->getLeft()->isMatrix() || node->getLeft()->isVector());
H A DOutputGLSLBase.cpp928 if (type.isMatrix())
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeObject.h852 bool isMatrix() const { function in class:SkPdfNativeObject
1046 SkASSERT(isMatrix());
1047 if (!isMatrix()) {
/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeObject.h852 bool isMatrix() const { function in class:SkPdfNativeObject
1046 SkASSERT(isMatrix());
1047 if (!isMatrix()) {
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceQueryTestCase.cpp600 const bool isMatrix = glu::isDataTypeMatrix(component.getVariableType()->getBasicType());
601 const int expected = (isBufferBlock && isMatrix && getMatrixOrderFromPath(path) == glu::MATRIXORDER_ROW_MAJOR) ? (1) : (0);
632 const bool isMatrix = glu::isDataTypeMatrix(component.getVariableType()->getBasicType());
637 if (isBufferBlock && isMatrix)

Completed in 172 milliseconds

12