Lines Matching defs:height

46 					 int				height,
60 depthPitch = rowPitch * height;
72 depthPitch == static_cast<vk::VkDeviceSize>(rowPitch * height))
83 vk::VkDeviceSize offsetDepthSrc = d * (pixelSize * width * height);
86 for (int r = 0; r < height; ++r)
98 int height,
112 depthPitch = rowPitch * height;
124 depthPitch == static_cast<vk::VkDeviceSize>(rowPitch * height))
133 vk::VkDeviceSize offsetDepthDst = d * (pixelSize * width * height);
137 for (int r = 0; r < height; ++r)
172 int height,
177 m_pixelAccessData.resize(width * height * vk::mapVkFormat(m_format).getPixelSize());
181 read(queue, allocator, layout, offset, width, height, 1, mipLevel, arrayElement, aspect, vk::VK_IMAGE_TYPE_2D,
186 readUsingBuffer(queue, allocator, layout, offset, width, height, 1, mipLevel, arrayElement, aspect, m_pixelAccessData.data());
188 return tcu::ConstPixelBufferAccess(vk::mapVkFormat(m_format), width, height, 1, m_pixelAccessData.data());
196 int height,
203 m_pixelAccessData.resize(width * height * tcuFormat.getPixelSize());
206 readUsingBuffer(queue, allocator, layout, offset, width, height, 1, mipLevel, arrayElement, aspect, m_pixelAccessData.data());
207 return tcu::ConstPixelBufferAccess(tcuFormat, width, height, 1, m_pixelAccessData.data());
215 int height,
221 m_pixelAccessData.resize(width * height * depth * vk::mapVkFormat(m_format).getPixelSize());
225 read(queue, allocator, layout, offset, width, height, depth, mipLevel, arrayElement, aspect, vk::VK_IMAGE_TYPE_3D,
230 readUsingBuffer(queue, allocator, layout, offset, width, height, depth, mipLevel, arrayElement, aspect, m_pixelAccessData.data());
232 return tcu::ConstPixelBufferAccess(vk::mapVkFormat(m_format), width, height, depth, m_pixelAccessData.data());
264 int height,
275 height, depth, mipLevel, arrayElement, aspect, type);
277 stagingResource->readLinear(zeroOffset, width, height, depth, 0, 0, aspect, data);
285 int height,
300 bufferSize = vk::mapVkFormat(m_format).getPixelSize() * width * height * depth;
324 bufferSize = pixelSize*width*height*depth;
369 { (deUint32)width, (deUint32)height, (deUint32)depth }
416 int height,
422 m_pixelAccessData.resize(width * height * vk::mapVkFormat(m_format).getPixelSize());
423 readLinear(offset, width, height, depth, mipLevel, arrayElement, aspect, m_pixelAccessData.data());
424 return tcu::ConstPixelBufferAccess(vk::mapVkFormat(m_format), width, height, 1, m_pixelAccessData.data());
429 int height,
452 MemoryOp::unpack(vk::mapVkFormat(m_format).getPixelSize(), width, height, depth,
461 int height,
470 vk::VkExtent3D stagingExtent = {(deUint32)width, (deUint32)height, (deUint32)depth};
487 vk::VkImageCopy region = { { (vk::VkImageAspectFlags)aspect, mipLevel, arrayElement, 1}, offset, { (vk::VkImageAspectFlags)aspect, 0, 0, 1}, zeroOffset, {(deUint32)width, (deUint32)height, (deUint32)depth} };
595 int height,
601 uploadLinear(offset, width, height, depth, mipLevel, arrayElement, aspect, access.getDataPtr());
609 int height,
620 vk::VkExtent3D extent = {(deUint32)width, (deUint32)height, (deUint32)depth};
629 stagingResource->uploadLinear(zeroOffset, width, height, depth, 0, 0, aspect, data);
672 {(deUint32)width, (deUint32)height, (deUint32)depth}};
687 int height,
700 bufferSize = vk::mapVkFormat(m_format).getPixelSize() *width*height*depth;
720 bufferSize = pixelSize*width*height*depth;
765 { (deUint32)width, (deUint32)height, (deUint32)depth }
778 int height,
801 MemoryOp::pack(vk::mapVkFormat(m_format).getPixelSize(), width, height, depth,