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

  /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...]
  /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/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateImageObjectUtil.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/external/vulkancts/modules/vulkan/query_pool/
vktQueryPoolImageObjectUtil.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/gles3/functional/
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]));
es3fTextureSpecificationTests.cpp     [all...]
  /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/framework/common/
tcuTexture.cpp 822 const int rowPitch = pixelSize * size.x();
823 const int slicePitch = rowPitch * size.y();
825 return IVec3(pixelSize, rowPitch, slicePitch);
853 ConstPixelBufferAccess::ConstPixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, const void* data)
856 , m_pitch (format.getPixelSize(), rowPitch, slicePitch)
890 PixelBufferAccess::PixelBufferAccess (const TextureFormat& format, int width, int height, int depth, int rowPitch, int slicePitch, void* data)
891 : ConstPixelBufferAccess(format, width, height, depth, rowPitch, slicePitch, data)
    [all...]
  /external/skia/third_party/vulkan/
vulkan.h     [all...]
  /external/vulkan-validation-layers/include/vulkan/
vulkan.h     [all...]
  /frameworks/native/vulkan/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/vulkan/
vulkan.h     [all...]

Completed in 325 milliseconds