Home
last modified time | relevance | path

Searched refs:isMatrix (Results 1 – 11 of 11) sorted by relevance

/external/deqp/modules/gles31/functional/
Des31fSSBOLayoutCase.cpp739 const bool isMatrix = glu::isDataTypeMatrix(entry.type); in generateValue() local
740 …const int numVecs = isMatrix ? (entry.isRowMajor ? glu::getDataTypeMatrixNumRows(entry.type) :… in generateValue()
758 deUint8* const vecPtr = elemPtr + (isMatrix ? vecNdx*entry.matrixStride : 0); in generateValue()
1157 const bool isMatrix = glu::isDataTypeMatrix(basicType); in generateCompareSrc() local
1163 if (isMatrix) in generateCompareSrc()
1241 const bool isMatrix = glu::isDataTypeMatrix(basicType); in generateWriteSrc() local
1246 if (isMatrix) in generateWriteSrc()
1480 const bool isMatrix = glu::isDataTypeMatrix(dstEntry.type); in copyBufferVarData() local
1504 if (isMatrix) in copyBufferVarData()
1687 const bool isMatrix = glu::isDataTypeMatrix(resEntry.type); in compareBufferVarData() local
[all …]
Des31fProgramInterfaceQueryTestCase.cpp657 const bool isMatrix = glu::isDataTypeMatrix(component.getVariableType()->getBasicType()); in validateSingleVariable() local
658 …const int expected = (isBufferBlock && isMatrix && getMatrixOrderFromPath(path) == glu::MAT… in validateSingleVariable()
691 const bool isMatrix = glu::isDataTypeMatrix(component.getVariableType()->getBasicType()); in validateSingleVariable() local
697 if (isBufferBlock && isMatrix) in validateSingleVariable()
Des31fProgramInterfaceQueryTests.cpp5731 bool isMatrix; in generateProgramInputOutputTypeBasicTypeCases() member
5760 if (!allowMatrixCases && variableTypes[ndx].isMatrix) in generateProgramInputOutputTypeBasicTypeCases()
/external/deqp/external/vulkancts/modules/vulkan/ssbo/
DvktSSBOLayoutCase.cpp654 const bool isMatrix = glu::isDataTypeMatrix(entry.type); in generateValue() local
655 …const int numVecs = isMatrix ? (entry.isRowMajor ? glu::getDataTypeMatrixNumRows(entry.type) :… in generateValue()
673 deUint8* const vecPtr = elemPtr + (isMatrix ? vecNdx*entry.matrixStride : 0); in generateValue()
1072 const bool isMatrix = glu::isDataTypeMatrix(basicType); in generateCompareSrc() local
1078 if (isMatrix) in generateCompareSrc()
1156 const bool isMatrix = glu::isDataTypeMatrix(basicType); in generateWriteSrc() local
1161 if (isMatrix) in generateWriteSrc()
1258 const bool isMatrix = glu::isDataTypeMatrix(dstEntry.type); in copyBufferVarData() local
1282 if (isMatrix) in copyBufferVarData()
1465 const bool isMatrix = glu::isDataTypeMatrix(resEntry.type); in compareBufferVarData() local
[all …]
/external/skia/src/animator/
DSkDisplayable.h79 bool isMatrix() const { return getType() == SkType_Matrix; } in isMatrix() function
DSkMatrixParts.cpp29 if (parent->isMatrix() == false) in setParent()
/external/deqp/modules/glshared/
DglsUniformBlockCase.cpp628 bool isMatrix = glu::isDataTypeMatrix(entry.type); in generateValue() local
629 …int numVecs = isMatrix ? (entry.isRowMajor ? glu::getDataTypeMatrixNumRows(entry.type) : glu:… in generateValue()
642 deUint8* vecPtr = elemPtr + (isMatrix ? vecNdx*entry.matrixStride : 0); in generateValue()
1275 bool isMatrix = glu::isDataTypeMatrix(dstEntry.type); in copyUniformData() local
1283 if (isMatrix) in copyUniformData()
1836 bool isMatrix = glu::isDataTypeMatrix(uniform.type); in checkLayoutBounds() local
1837 …int numVecs = isMatrix ? (uniform.isRowMajor ? glu::getDataTypeMatrixNumRows(uniform.type)… in checkLayoutBounds()
1838 …int numComps = isMatrix ? (uniform.isRowMajor ? glu::getDataTypeMatrixNumColumns(uniform.ty… in checkLayoutBounds()
DglsShaderExecUtil.cpp973 const bool isMatrix = glu::isDataTypeMatrix(basicType); in copyToBuffer() local
975 const int numVecs = isMatrix ? glu::getDataTypeMatrixNumColumns(basicType) : 1; in copyToBuffer()
983 …const int dstOffset = layout.offset + layout.stride*elemNdx + (isMatrix ? layout.matrixStride*ve… in copyToBuffer()
1000 const bool isMatrix = glu::isDataTypeMatrix(basicType); in copyFromBuffer() local
1002 const int numVecs = isMatrix ? glu::getDataTypeMatrixNumColumns(basicType) : 1; in copyFromBuffer()
1009 …const int srcOffset = layout.offset + layout.stride*elemNdx + (isMatrix ? layout.matrixStride*ve… in copyFromBuffer()
/external/deqp/external/vulkancts/modules/vulkan/
DvktShaderLibrary.cpp623 const bool isMatrix = isDataTypeMatrix(basicType); in computeStd140Layout() local
624 const int numVecs = isMatrix ? getDataTypeMatrixNumColumns(basicType) : 1; in computeStd140Layout()
625 …const DataType vecType = isMatrix ? glu::getDataTypeFloatVec(getDataTypeMatrixNumRows(basicType))… in computeStd140Layout()
627 const int alignment = ((isMatrix || vecSize == 3) ? 4 : vecSize)*int(sizeof(deUint32)); in computeStd140Layout()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderExecutor.cpp1742 const bool isMatrix = glu::isDataTypeMatrix(basicType); in copyToBuffer() local
1744 const int numVecs = isMatrix ? glu::getDataTypeMatrixNumColumns(basicType) : 1; in copyToBuffer()
1752 …const int dstOffset = layout.offset + layout.stride * elemNdx + (isMatrix ? layout.matrixStride … in copyToBuffer()
1769 const bool isMatrix = glu::isDataTypeMatrix(basicType); in copyFromBuffer() local
1771 const int numVecs = isMatrix ? glu::getDataTypeMatrixNumColumns(basicType) : 1; in copyFromBuffer()
1778 …const int srcOffset = layout.offset + layout.stride * elemNdx + (isMatrix ? layout.matrixStride … in copyFromBuffer()
/external/deqp/external/vulkancts/modules/vulkan/ubo/
DvktUniformBlockCase.cpp575 bool isMatrix = glu::isDataTypeMatrix(entry.type); in generateValue() local
576 …int numVecs = isMatrix ? (entry.isRowMajor ? glu::getDataTypeMatrixNumRows(entry.type) : glu:… in generateValue()
589 deUint8* vecPtr = elemPtr + (isMatrix ? vecNdx*entry.matrixStride : 0); in generateValue()