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

  /external/deqp/modules/gles31/functional/
es31fTextureSpecificationTests.cpp 432 int slicePitch = imageHeight*rowPitch;
440 data.resize(slicePitch*(m_depth+m_skipImages) + m_offset);
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);
534 int slicePitch = rowPitch*m_size;
536 data.resize(slicePitch*m_depth);
537 tcu::fillWithComponentGradients(tcu::PixelBufferAccess(m_texFormat, m_size, m_size, m_depth, rowPitch, slicePitch, &data[0]), m_texFormatInfo.valueMin, m_texFormatInfo.valueMax);
547 int slicePitch = imageHeight*rowPitch;
553 data.resize(slicePitch*(m_depth+m_skipImages) + m_offset);
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_offset), 4, (…)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureSpecificationTests.cpp     [all...]
  /external/deqp/framework/common/
tcuTexture.hpp 249 ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data);
307 PixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, void* data);
    [all...]
tcuTexture.cpp 544 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data)
550 , m_slicePitch (slicePitch)
571 PixelBufferAccess::PixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, void* data)
572 : ConstPixelBufferAccess(format, width, height, depth, rowPitch, slicePitch, data)
    [all...]
  /external/deqp/framework/opengl/simplereference/
sglrReferenceContext.cpp 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 240 milliseconds