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

1 2

  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawImageObjectUtil.cpp 52 vk::VkDeviceSize rowPitch = rowPitchOrZero;
55 if (rowPitch == 0)
56 rowPitch = width * pixelSize;
59 depthPitch = rowPitch * height;
70 if (rowPitch == static_cast<vk::VkDeviceSize>(width * pixelSize) &&
71 depthPitch == static_cast<vk::VkDeviceSize>(rowPitch * height))
87 deMemcpy(dstRow, srcRow, static_cast<size_t>(rowPitch));
89 dstRow += rowPitch;
104 vk::VkDeviceSize rowPitch = rowPitchOrZero;
107 if (rowPitch == 0
    [all...]
  /external/deqp/modules/gles2/functional/
es2fReadPixelsTests.cpp 208 const int rowPitch = m_alignment * deCeilFloatToInt32(float(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(float(pixelSize * rowWidth) / (float)m_alignment);
316 pixelData.resize(rowPitch * (m_height + m_skipRows), 0);
356 const int rowPitch = m_alignment * deCeilFloatToInt32((float)(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]));
  /external/dng_sdk/source/
dng_misc_opcodes.h 88 uint32 rowPitch = 1,
94 , fRowPitch (rowPitch)
123 const uint32 RowPitch () const
  /frameworks/av/media/img_utils/src/
DngUtils.cpp 151 /*rowPitch*/2,
169 /*rowPitch*/2,
187 /*rowPitch*/2,
205 /*rowPitch*/2,
224 uint32_t rowPitch,
260 rowPitch,
  /external/deqp/external/vulkancts/framework/vulkan/
vkTypeUtil.inl 91 inline VkSubresourceLayout makeSubresourceLayout (VkDeviceSize offset, VkDeviceSize size, VkDeviceSize rowPitch, VkDeviceSize arrayPitch, VkDeviceSize depthPitch)
96 res.rowPitch = rowPitch;
vkImageUtil.cpp     [all...]
vkStructTypes.inl 517 VkDeviceSize rowPitch;
    [all...]
  /external/deqp/framework/common/
tcuTextureUtil.cpp 328 const int rowPitch = access.getRowPitch();
329 const int offsetToLast = rowPitch*(access.getHeight()-1);
330 const tcu::IVec3 pitch (access.getPixelPitch(), -rowPitch, access.getSlicePitch());
342 const int rowPitch = access.getRowPitch();
343 const int offsetToLast = rowPitch*(access.getHeight()-1);
344 const tcu::IVec3 pitch (access.getPixelPitch(), -rowPitch, access.getSlicePitch());
    [all...]
tcuTexture.cpp 878 const int rowPitch = pixelSize * size.x();
879 const int slicePitch = rowPitch * size.y();
881 return IVec3(pixelSize, rowPitch, slicePitch);
    [all...]
tcuTexture.hpp 327 ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data);
367 IVec3 m_pitch; //!< (pixelPitch, rowPitch, slicePitch)
387 PixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, void* data);
    [all...]
  /external/skia/src/gpu/vk/
GrVkGpu.cpp 594 VkDeviceSize offset = alloc.fOffset + texTop*layout.rowPitch + left*bpp;
595 VkDeviceSize size = height*layout.rowPitch;
605 char* dstRow = reinterpret_cast<char*>(mapPtr)+(height - 1)*layout.rowPitch;
609 dstRow -= layout.rowPitch;
612 SkRectMemcpy(mapPtr, static_cast<size_t>(layout.rowPitch), data, rowBytes, trimRowBytes,
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_dump.c 237 map += layout.rowPitch;
anv_image.c 404 layout->rowPitch = surface->isl.row_pitch;
  /external/deqp/external/vulkancts/modules/vulkan/ycbcr/
vktYCbCrUtil.cpp 468 void* const dstPtr = ((deUint8*)allocation->getHostPtr()) + layout.offset + layout.rowPitch * row;
775 const void* const srcPtr = ((const deUint8*)allocation->getHostPtr()) + layout.offset + layout.rowPitch * row;
vktYCbCrConversionTests.cpp 584 const deUint32 rowPitch = formatInfo.planes[planeNdx].elementSizeBytes * accessWidth;
585 const deUint32 rowPitchBits = rowPitch * 8;
    [all...]
  /external/mesa3d/src/amd/vulkan/
radv_image.c 958 pLayout->rowPitch = image->surface.level[level].pitch_bytes;
    [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...]
  /external/vulkan-validation-layers/tests/
vkrenderframework.cpp     [all...]
  /external/vulkan-validation-layers/demos/
cube.c     [all...]

Completed in 780 milliseconds

1 2