Lines Matching refs:fbExtent
3392 const auto fbExtent = makeExtent3D(fbDim);
3404 ImageWithBuffer colorBuffer(vkd, device, allocator, fbExtent, colorFormat, colorUsage, VK_IMAGE_TYPE_2D);
3410 const auto pointCount = fbExtent.width * fbExtent.height * fbExtent.depth;
3414 for (uint32_t y = 0u; y < fbExtent.height; ++y)
3415 for (uint32_t x = 0u; x < fbExtent.width; ++x)
3417 const auto xCoord = ((static_cast<float>(x) + 0.5f) / static_cast<float>(fbExtent.width)) * 2.0f - 1.0f;
3418 const auto yCoord = ((static_cast<float>(y) + 0.5f) / static_cast<float>(fbExtent.height)) * 2.0f - 1.0f;
3451 const auto framebuffer = makeFramebuffer(vkd, device, renderPass.get(), colorBuffer.getImageView(), fbExtent.width, fbExtent.height);
3454 const std::vector<VkViewport> viewports (1u, makeViewport(fbExtent));
3455 const std::vector<VkRect2D> scissors (1u, makeRect2D(fbExtent));
3524 const auto copyRegion = makeBufferImageCopy(fbExtent, colorSRL);