HomeSort by relevance Sort by last modified time
    Searched refs:rowPitch (Results 1 - 12 of 12) sorted by null

  /external/deqp/modules/gles2/functional/
es2fReadPixelsTests.cpp 208 const int rowPitch = m_alignment * deCeilFloatToInt32(pixelSize * width / (float)m_alignment);
210 pixelData.resize(rowPitch * height, 0);
231 tcu::copy(resultRGBA8.getLevel(0), tcu::PixelBufferAccess(format, width, height, 1, rowPitch, 0, &(pixelData[0])));
247 if (tcu::floatThresholdCompare(m_testCtx.getLog(), "Result", "Result", reference.getLevel(0), tcu::PixelBufferAccess(format, width, height, 1, rowPitch, 0, &(pixelData[0])), tcu::Vec4(redThreshold, greenThreshold, blueThreshold, alphaThreshold), tcu::COMPARE_LOG_RESULT))
es2fTextureSpecificationTests.cpp 843 int rowPitch = getRowPitch(fmt, levelW, m_alignment);
846 data.resize(rowPitch*levelH);
847 tcu::fillWithGrid(tcu::PixelBufferAccess(fmt, levelW, levelH, 1, rowPitch, 0, &data[0]), cellSize, colorA, colorB);
888 int rowPitch = getRowPitch(fmt, levelW, m_alignment);
893 data.resize(rowPitch*levelH);
894 tcu::fillWithGrid(tcu::PixelBufferAccess(fmt, levelW, levelH, 1, rowPitch, 0, &data[0]), cellSize, colorA, colorB);
    [all...]
  /frameworks/av/media/img_utils/include/img_utils/
DngUtils.h 100 uint32_t rowPitch,
  /external/deqp/modules/gles31/functional/
es31fTextureSpecificationTests.cpp 430 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment);
432 int slicePitch = imageHeight*rowPitch;
447 tcu::fillWithGrid(tcu::PixelBufferAccess(m_texFormat, m_size, m_size, m_depth, rowPitch, slicePitch, &data[0] + m_skipImages*slicePitch + m_skipRows*rowPitch + m_skipPixels*pixelSize + m_offset), 4, colorA, colorB);
533 int rowPitch = deAlign32(pixelSize*m_size, 4);
534 int slicePitch = rowPitch*m_size;
537 tcu::fillWithComponentGradients(tcu::PixelBufferAccess(m_texFormat, m_size, m_size, m_depth, rowPitch, slicePitch, &data[0]), m_texFormatInfo.valueMin, m_texFormatInfo.valueMax);
545 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment);
547 int slicePitch = imageHeight*rowPitch;
554 tcu::fillWithGrid(tcu::PixelBufferAccess(m_texFormat, m_subW, m_subH, m_subD, rowPitch, slicePitch, &data[0] + m_skipImages*slicePitch + m_skipRows*rowPitch + m_skipPixels*pixelSize + m (…)
    [all...]
es31fShaderImageLoadStoreTests.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureSpecificationTests.cpp     [all...]
es3fReadPixelsTests.cpp 314 const int rowPitch = m_alignment * deCeilFloatToInt32(pixelSize * rowWidth / (float)m_alignment);
316 pixelData.resize(rowPitch * (m_height + m_skipRows), 0);
356 const int rowPitch = m_alignment * deCeilFloatToInt32(pixelSize * rowWidth / (float)m_alignment);
357 const tcu::ConstPixelBufferAccess resultAccess = tcu::ConstPixelBufferAccess(format, m_width, m_height, 1, rowPitch, 0, &(pixelData[pixelSize * m_skipPixels + m_skipRows * rowPitch]));
  /frameworks/av/media/img_utils/src/
DngUtils.cpp 143 /*rowPitch*/2,
161 /*rowPitch*/2,
179 /*rowPitch*/2,
197 /*rowPitch*/2,
216 uint32_t rowPitch,
258 rowPitch,
  /external/deqp/framework/common/
tcuTextureUtil.cpp 216 const int rowPitch = access.getRowPitch();
217 const int offsetToLast = rowPitch*(access.getHeight()-1);
218 const tcu::IVec3 pitch (access.getPixelPitch(), -rowPitch, access.getSlicePitch());
230 const int rowPitch = access.getRowPitch();
231 const int offsetToLast = rowPitch*(access.getHeight()-1);
232 const tcu::IVec3 pitch (access.getPixelPitch(), -rowPitch, access.getSlicePitch());
    [all...]
tcuTexture.hpp 304 ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data);
344 IVec3 m_pitch; //!< (pixelPitch, rowPitch, slicePitch)
364 PixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, void* data);
    [all...]
tcuTexture.cpp 486 const int rowPitch = pixelSize * size.x();
487 const int slicePitch = rowPitch * size.y();
489 return IVec3(pixelSize, rowPitch, slicePitch);
558 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data)
561 , m_pitch (format.getPixelSize(), rowPitch, slicePitch)
593 PixelBufferAccess::PixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, void* data)
594 : ConstPixelBufferAccess(format, width, height, depth, rowPitch, slicePitch, data)
    [all...]
  /external/deqp/framework/opengl/simplereference/
sglrReferenceContext.cpp 933 int rowPitch = deAlign32(rowLen*pixelSize, m_pixelUnpackAlignment);
934 const deUint8* ptr = (const deUint8*)data + m_pixelUnpackSkipRows*rowPitch + m_pixelUnpackSkipPixels*pixelSize;
936 return tcu::ConstPixelBufferAccess(format, width, height, 1, rowPitch, 0, ptr);
944 int rowPitch = deAlign32(rowLen*pixelSize, m_pixelUnpackAlignment);
945 int slicePitch = imageHeight*rowPitch;
946 const deUint8* ptr = (const deUint8*)data + m_pixelUnpackSkipImages*slicePitch + m_pixelUnpackSkipRows*rowPitch + m_pixelUnpackSkipPixels*pixelSize;
948 return tcu::ConstPixelBufferAccess(format, width, height, depth, rowPitch, slicePitch, ptr);
    [all...]

Completed in 250 milliseconds