Lines Matching refs:imageExtent
810 const auto imageExtent = makeExtent3D(imageDim, imageDim, 1u);
815 const auto pixelCount = imageExtent.width * imageExtent.height;
836 imageExtent, // VkExtent3D extent;
860 imageExtent, // VkExtent3D extent;
924 framebuffer = makeFramebuffer(vkd, device, renderPass.get(), static_cast<deUint32>(attachments.size()), de::dataOrNull(attachments), imageExtent.width, imageExtent.height, 1u);
928 const auto viewport = makeViewport(imageExtent);
930 const auto scissor = makeRect2D(imageExtent);
1029 triangleGen = TriangleGeneratorPtr(new TriangleMosaicGenerator(imageExtent.width, imageExtent.height));
1031 triangleGen = TriangleGeneratorPtr(new TriangleOverlapGenerator(imageExtent.width, imageExtent.height));
1039 for (deUint32 y = 0u; y < imageExtent.height; ++y)
1040 for (deUint32 x = 0u; x < imageExtent.width; ++x)
1045 const auto pixelIndex = y * imageExtent.width + x;
1210 const auto colorCopyRegion = makeBufferImageCopy(imageExtent, colorSubresourceLayers);
1218 const auto stencilCopyRegion = makeBufferImageCopy(imageExtent, stencilSubresourceLayers);
1242 const auto iWidth = static_cast<int>(imageExtent.width);
1243 const auto iHeight = static_cast<int>(imageExtent.height);