Lines Matching defs:height
253 const deUint32 height = frameNdx == 0
259 { width, height }
263 DE_ASSERT(height > 0);
271 deUint32 height)
277 const vk::VkRect2D rect = getRenderFrameRect(frameNdx, width, height);
430 deUint32 height)
442 height,
454 deUint32 height,
460 framebuffers[ndx] = createFramebuffer(vkd, device, renderPass, imageViews[ndx], width, height).disown();
546 deUint32 height)
558 const std::vector<vk::VkViewport> viewports (1, vk::makeViewport(tcu::UVec2(width, height)));
559 const std::vector<vk::VkRect2D> scissors (1, vk::makeRect2D(tcu::UVec2(width, height)));
702 const deUint32 currentHeight = properties.currentExtent.height != 0xFFFFFFFFu
703 ? properties.currentExtent.height
704 : de::min(1024u, properties.minImageExtent.height + ((properties.maxImageExtent.height - properties.minImageExtent.height) / 2));
714 ? de::max(31u, properties.minImageExtent.height)
715 : de::min(deSmallestGreaterOrEquallPowerOfTwoU32(currentHeight+1), properties.maxImageExtent.height));
717 const vk::VkExtent2D unusedSize = { de::max(31u, properties.minImageExtent.width), de::max(31u, properties.minImageExtent.height) };
853 const deUint32 imageHeight = m_swapchainConfigs[m_swapchainConfigNdx].imageExtent.height;
925 const deUint32 height = m_swapchainConfigs[m_swapchainConfigNdx].imageExtent.height;
948 m_commandBuffers[m_frameNdx % m_commandBuffers.size()] = createCommandBuffer(m_vkd, *m_device, *m_commandPool, *m_pipelineLayout, *m_renderPass, m_framebuffers[imageIndex], *m_pipeline, m_swapchainImages[imageIndex], m_isFirst[imageIndex], imageNextFrame, m_frameNdx, width, height).disown();
976 const vector<vk::VkRectLayerKHR> rects = getUpdatedRects(imageNextFrame, m_frameNdx, width, height);