/external/deqp/framework/opengl/ |
D | gluPixelTransfer.cpp | 54 TCU_CHECK_INTERNAL(dst.getRowPitch() == dst.getFormat().getPixelSize()*dst.getWidth()); in readPixels() 73 TCU_CHECK_INTERNAL(src.getRowPitch() == src.getFormat().getPixelSize()*src.getWidth()); in texImage2D() 91 TCU_CHECK_INTERNAL(src.getRowPitch() == src.getFormat().getPixelSize()*src.getWidth()); in texImage3D() 92 TCU_CHECK_INTERNAL(src.getSlicePitch() == src.getRowPitch()*src.getHeight()); in texImage3D() 112 TCU_CHECK_INTERNAL(src.getRowPitch() == src.getFormat().getPixelSize()*src.getWidth()); in texSubImage2D() 130 TCU_CHECK_INTERNAL(src.getRowPitch() == src.getFormat().getPixelSize()*src.getWidth()); in texSubImage3D() 131 TCU_CHECK_INTERNAL(src.getSlicePitch() == src.getRowPitch()*src.getHeight()); in texSubImage3D()
|
D | gluTexture.cpp | 180 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); in upload() 313 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); in upload() 401 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); in upload() 520 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); in upload() 607 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); in upload() 729 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); in upload() 820 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*access.getWidth()); in upload()
|
/external/deqp/framework/referencerenderer/ |
D | rrMultisamplePixelBufferAccess.cpp | 46 …tcu::IVec3(m_access.getRowPitch(), m_access.getSlicePitch(), m_access.getSlicePitch() * m_access.g… in toSinglesampleAccess() 56 tcu::IVec3(original.getPixelPitch(), original.getPixelPitch(), original.getRowPitch()), in fromSinglesampleAccess() 86 …tcu::IVec3(m_access.getRowPitch(), m_access.getSlicePitch(), m_access.getSlicePitch() * m_access.g… in toSinglesampleAccess() 96 tcu::IVec3(original.getPixelPitch(), original.getPixelPitch(), original.getRowPitch()), in fromSinglesampleAccess()
|
D | rrFragmentOperations.cpp | 718 const int xStride = colorBuffer.getRowPitch(); in executeRGBA8ColorWrite()
|
/external/deqp/modules/internal/ |
D | ditImageIOTests.cpp | 60 …TCU_CHECK(texture.getAccess().getRowPitch() == texture.getWidth()*texture.getFormat().getPixelSize… in iterate() 61 …TCU_CHECK(texture.getAccess().getSlicePitch() == texture.getAccess().getRowPitch()*texture.getAcce… in iterate()
|
/external/deqp/framework/common/ |
D | tcuFuzzyImageCompare.cpp | 76 const deUint8* ptr = (const deUint8*)src.getDataPtr() + src.getRowPitch()*y + x*NumChannels; in readUnorm8() 92 return *(const deUint32*)((const deUint8*)src.getDataPtr() + src.getRowPitch()*y + x*4); in readUnorm8() 99 deUint8* ptr = (deUint8*)dst.getDataPtr() + dst.getRowPitch()*y + x*NumChannels; in writeUnorm8() 109 *(deUint32*)((deUint8*)dst.getDataPtr() + dst.getRowPitch()*y + x*4) = val; in writeUnorm8()
|
D | tcuImageIO.cpp | 127 row_pointers[y] = (deUint8*)dst.getAccess().getDataPtr() + y*dst.getAccess().getRowPitch(); in loadPNG() 195 rowPointers[y] = (deUint8*)src.getDataPtr() + y*src.getRowPitch(); in savePNG()
|
D | tcuBilinearImageCompare.cpp | 52 return *(const deUint32*)((const deUint8*)src.getDataPtr() + y*src.getRowPitch() + x*4); in readRGBA8Raw() 57 …return deReverseBytes32(*(const deUint32*)((const deUint8*)src.getDataPtr() + y*src.getRowPitch() … in readRGBA8Raw()
|
D | tcuCompressedTexture.cpp | 938 const int dstRowPitch = dst.getRowPitch(); in decompressETC2_EAC_RGBA8() 973 const int dstRowPitch = dst.getRowPitch(); in decompressETC2_RGB8_PUNCHTHROUGH_ALPHA1() 1006 const int dstRowPitch = dst.getRowPitch(); in decompressEAC_R11() 1045 const int dstRowPitch = dst.getRowPitch(); in decompressEAC_RG11() 1494 const deUint32 dstRowPitch = dst.getRowPitch(); in decompressBc1() 1547 const deUint32 dstRowPitch = dst.getRowPitch(); in decompressBc2() 1619 const deUint32 dstRowPitch = dst.getRowPitch(); in decompressBc3() 1710 const deUint32 dstRowPitch = dst.getRowPitch(); in decompressBc4() 1770 const deUint32 dstRowPitch = dst.getRowPitch(); in decompressBc5() 1820 const deUint32 dstRowPitch = dst.getRowPitch(); in decompressBc6H() [all …]
|
D | tcuTestLog.cpp | 268 width, height, access.getRowPitch(), access.getDataPtr()); in writeImage() 293 logImageAccess.getWidth(), logImageAccess.getHeight(), logImageAccess.getRowPitch(), in writeImage() 361 logImageAccess.getWidth(), logImageAccess.getHeight(), logImageAccess.getRowPitch(), in writeImage()
|
D | tcuTextureUtil.cpp | 272 …(const deUint8*)access.getDataPtr() + access.getPixelPitch()*x + access.getRowPitch()*y + access.g… in getSubregion() 298 …(deUint8*)access.getDataPtr() + access.getPixelPitch()*x + access.getRowPitch()*y + access.getSlic… in getSubregion() 336 const int rowPitch = access.getRowPitch(); in flipYAccess() 350 const int rowPitch = access.getRowPitch(); in flipYAccess()
|
D | tcuTexture.hpp | 366 int getRowPitch (void) const { return m_pitch.y(); } in getRowPitch() function in tcu::ConstPixelBufferAccess
|
D | tcuTexture.cpp | 4192 << ", pitch = " << access.getRowPitch() << " / " << access.getSlicePitch(); in operator <<()
|
/external/deqp/modules/glshared/ |
D | glsFragmentOpUtil.cpp | 284 original.getRowPitch(), in getMultisampleAccess() 295 original.getRowPitch(), in getMultisampleAccess()
|
D | glsLongStressCase.cpp | 523 DE_ASSERT(src.getRowPitch() == format.getPixelSize()*src.getWidth()); in setData() 565 DE_ASSERT(src.getRowPitch() == format.getPixelSize()*src.getWidth()); in setSubData()
|
/external/deqp/modules/gles3/functional/ |
D | es3fTextureUnitTests.cpp | 1072 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*width); in upload2dTexture() 1098 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*width); in uploadCubeTexture() 1124 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*width); in upload2dArrayTexture() 1150 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*width); in upload3dTexture()
|
/external/deqp/modules/gles2/functional/ |
D | es2fTextureSpecificationTests.cpp | 823 static inline int getRowPitch (const tcu::TextureFormat& transferFmt, int rowLen, int alignment) in getRowPitch() function 862 int rowPitch = getRowPitch(fmt, levelW, m_alignment); in createTexture() 910 int rowPitch = getRowPitch(fmt, levelW, m_alignment); in createTexture() 1226 int rowPitch = getRowPitch(fmt, m_subW, m_alignment); in createTexture() 1283 int rowPitch = getRowPitch(fmt, m_subW, m_alignment); in createTexture()
|
D | es2fTextureUnitTests.cpp | 865 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*width); in render() 889 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize()*width); in render()
|
/external/deqp/modules/gles31/functional/ |
D | es31fAdvancedBlendTests.cpp | 394 access.getRowPitch(), access.getSlicePitch(), access.getDataPtr()); in getLinearAccess()
|
D | es31fShaderImageLoadStoreTests.cpp | 1337 const int rowPitch = sliceAccess.getRowPitch(); in replaceBadFloatReinterpretValues() 1518 const int rowPitch = sliceAccess.getRowPitch(); in iterate()
|
/external/deqp/framework/opengl/simplereference/ |
D | sglrReferenceContext.cpp | 2378 …ccess(level.getFormat(), level.getWidth(), level.getHeight(), 1, level.getRowPitch(), 0, layerData… in getFboAttachment() 3071 …cFmt, srcRaw.getWidth(), srcRaw.getHeight(), srcRaw.getDepth(), srcRaw.getRowPitch(), srcRaw.getSl… in blitResolveMultisampleFramebuffer() 3074 …dst.getFormat()), dst.getWidth(), dst.getHeight(), dst.getDepth(), dst.getRowPitch(), dst.getSlice… in blitResolveMultisampleFramebuffer() 3221 …src.getFormat()), src.getWidth(), src.getHeight(), src.getDepth(), src.getRowPitch(), src.getSlice… in blitFramebuffer() 3222 …dst.getFormat()), dst.getWidth(), dst.getHeight(), dst.getDepth(), dst.getRowPitch(), dst.getSlice… in blitFramebuffer()
|
/external/deqp/external/openglcts/modules/gles2/ |
D | es2cTexture3DTests.cpp | 267 DE_ASSERT(access.getRowPitch() == access.getFormat().getPixelSize() * access.getWidth()); in uploadTexture3D()
|