Lines Matching refs:fbExtent
1852 const auto fbExtent = makeExtent3D(1u, 1u, 1u);
1853 const tcu::IVec3 iExtent (static_cast<int>(fbExtent.width), static_cast<int>(fbExtent.height), static_cast<int>(fbExtent.depth));
2003 fbExtent, // VkExtent3D extent;
2020 renderPass.createFramebuffer(vkd, device, **colorAtt, colorAttView.get(), fbExtent.width, fbExtent.height);
2022 DE_ASSERT(fbExtent.width == 1u && fbExtent.height == 1u && fbExtent.depth == 1u);
2027 viewports.push_back(makeViewport(fbExtent));
2028 scissors.push_back(makeRect2D(fbExtent));
2840 const auto copyRegion = makeBufferImageCopy(fbExtent, colorSRL);
3167 const auto fbExtent = makeExtent3D(2u, 2u, 1u);
3168 const tcu::IVec3 iExtent (static_cast<int>(fbExtent.width), static_cast<int>(fbExtent.height), static_cast<int>(fbExtent.depth));
3176 const std::vector<VkViewport> rpViewports (1u, makeViewport(fbExtent));
3177 const std::vector<VkRect2D> rpScissors (1u, makeRect2D(fbExtent));
3187 fbExtent, // VkExtent3D extent;
3204 renderPass.createFramebuffer(vkd, device, colorAtt.get(), colorAttView.get(), fbExtent.width, fbExtent.height);
3207 DE_ASSERT(fbExtent.depth == 1u);
3208 const auto verifBufferSize = static_cast<VkDeviceSize>(pixelSize) * fbExtent.width * fbExtent.height;
3360 const auto row = tescIdx / fbExtent.width;
3361 const auto col = tescIdx % fbExtent.width;
3435 const auto copyRegion = makeBufferImageCopy(fbExtent, colorSRL);