Searched defs:rowPitch (Results 1 - 12 of 12) sorted by relevance

/external/deqp/modules/gles2/functional/
H A Des2fReadPixelsTests.cpp208 const int rowPitch = m_alignment * deCeilFloatToInt32(float(pixelSize * width) / (float)m_alignment); local
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))
H A Des2fTextureSpecificationTests.cpp843 int rowPitch = getRowPitch(fmt, levelW, m_alignment); local
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); local
893 data.resize(rowPitch*levelH);
894 tcu::fillWithGrid(tcu::PixelBufferAccess(fmt, levelW, levelH, 1, rowPitch, 0, &data[0]), cellSize, colorA, colorB);
1189 int rowPitch = getRowPitch(fmt, m_subW, m_alignment); local
1190 data.resize(rowPitch*m_subH);
1191 tcu::fillWithGrid(tcu::PixelBufferAccess(fmt, m_subW, m_subH, 1, rowPitch, 0, &data[0]), 4, Vec4(1.0f, 0.0f, 0.0f, 1.0f), Vec4(0.0f, 1.0f, 0.0f, 1.0f));
1243 int rowPitch local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fReadPixelsTests.cpp314 const int rowPitch = m_alignment * deCeilFloatToInt32(float(pixelSize * rowWidth) / (float)m_alignment); local
316 pixelData.resize(rowPitch * (m_height + m_skipRows), 0);
356 const int rowPitch = m_alignment * deCeilFloatToInt32((float)(pixelSize * rowWidth) / (float)m_alignment); local
357 const tcu::ConstPixelBufferAccess resultAccess = tcu::ConstPixelBufferAccess(format, m_width, m_height, 1, rowPitch, 0, &(pixelData[pixelSize * m_skipPixels + m_skipRows * rowPitch]));
H A Des3fTextureSpecificationTests.cpp989 int rowPitch = deAlign32(levelW*m_texFormat.getPixelSize(), m_alignment); local
992 data.resize(rowPitch*levelH);
993 tcu::fillWithGrid(tcu::PixelBufferAccess(m_texFormat, levelW, levelH, 1, rowPitch, 0, &data[0]), cellSize, colorA, colorB);
1043 int rowPitch = deAlign32(m_texFormat.getPixelSize()*levelSize, m_alignment); local
1048 data.resize(rowPitch*levelSize);
1049 tcu::fillWithGrid(tcu::PixelBufferAccess(m_texFormat, levelSize, levelSize, 1, rowPitch, 0, &data[0]), cellSize, colorA, colorB);
1082 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
1090 data.resize(rowPitch*height);
1097 tcu::fillWithGrid(tcu::PixelBufferAccess(m_texFormat, m_width, m_height, 1, rowPitch, 0, &data[0] + m_skipRows*rowPitch
1151 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
1398 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
1672 int rowPitch = deAlign32(m_texFormat.getPixelSize()*m_subW, m_alignment); local
1741 int rowPitch = deAlign32(m_texFormat.getPixelSize()*m_subW, m_alignment); local
1815 int rowPitch = deAlign32(pixelSize*m_width, 4); local
1827 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
2319 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
2393 const int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
2473 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
2555 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
2656 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
2755 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
2849 int rowPitch = deAlign32(pixelSize*m_width, 4); local
2861 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
2960 int rowPitch = deAlign32(pixelSize*m_width, 4); local
2972 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
3271 int rowPitch = deAlign32(rowLength*pixelSize, alignment); local
3332 int rowPitch = deAlign32(rowLength*pixelSize, alignment); local
[all...]
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawImageObjectUtil.cpp52 vk::VkDeviceSize rowPitch = rowPitchOrZero; local
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; local
107 if (rowPitch
811 getPixelOffset(vk::VkOffset3D offset, vk::VkDeviceSize rowPitch, vk::VkDeviceSize depthPitch, unsigned int level, unsigned int layer) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateImageObjectUtil.cpp52 vk::VkDeviceSize rowPitch = rowPitchOrZero; local
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; local
107 if (rowPitch
811 getPixelOffset(vk::VkOffset3D offset, vk::VkDeviceSize rowPitch, vk::VkDeviceSize depthPitch, unsigned int level, unsigned int layer) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/query_pool/
H A DvktQueryPoolImageObjectUtil.cpp52 vk::VkDeviceSize rowPitch = rowPitchOrZero; local
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; local
107 if (rowPitch
789 getPixelOffset(vk::VkOffset3D offset, vk::VkDeviceSize rowPitch, vk::VkDeviceSize depthPitch, unsigned int level, unsigned int layer) argument
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fTextureSpecificationTests.cpp430 int rowPitch = deAlign32(rowLength*pixelSize, m_alignment); local
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); local
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); local
547 int slicePitch = imageHeight*rowPitch;
554 tcu::fillWithGrid(tcu::PixelBufferAccess(m_texFormat, m_subW, m_subH, m_subD, rowPitch, slicePitc
724 int rowPitch = deAlign32(rowLength*pixelSize, alignment); local
[all...]
H A Des31fShaderImageLoadStoreTests.cpp1329 const int rowPitch = sliceAccess.getRowPitch(); local
1335 void *const pixelData = (deUint8*)data + y*rowPitch + x*pixelSize;
1510 const int rowPitch = sliceAccess.getRowPitch(); local
1516 void *const pixelData = (deUint8*)data + y*rowPitch + x*pixelSize;
/external/deqp/framework/common/
H A DtcuTexture.cpp822 const int rowPitch = pixelSize * size.x(); local
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) argument
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) argument
891 : ConstPixelBufferAccess(format, width, height, depth, rowPitch, slicePitch, data)
/external/skia/third_party/vulkan/
H A Dvulkan.h1594 VkDeviceSize rowPitch; member in struct:VkSubresourceLayout
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.h1603 VkDeviceSize rowPitch; member in struct:VkSubresourceLayout

Completed in 385 milliseconds