Lines Matching refs:clear_rect
2484 VkClearRect clear_rect = {{{0, 0}, {(uint32_t)m_width, (uint32_t)m_height}}, 0, 1}; in TEST_F() local
2489 vkCmdClearAttachments(m_commandBuffer->handle(), 1, &color_attachment, 1, &clear_rect); in TEST_F()
2492 clear_rect.rect.extent.width = renderPassBeginInfo().renderArea.extent.width + 4; in TEST_F()
2493 clear_rect.rect.extent.height = clear_rect.rect.extent.height / 2; in TEST_F()
2495 vkCmdClearAttachments(m_commandBuffer->handle(), 1, &color_attachment, 1, &clear_rect); in TEST_F()
2499 clear_rect.rect.extent.width = (uint32_t)m_width; in TEST_F()
2500 clear_rect.baseArrayLayer = 1; in TEST_F()
2501 clear_rect.layerCount = 1; in TEST_F()
2503 vkCmdClearAttachments(m_commandBuffer->handle(), 1, &color_attachment, 1, &clear_rect); in TEST_F()
2507 clear_rect.rect.extent.width = (uint32_t)m_width; in TEST_F()
2508 clear_rect.baseArrayLayer = 0; in TEST_F()
2509 clear_rect.layerCount = 2; in TEST_F()
2511 vkCmdClearAttachments(m_commandBuffer->handle(), 1, &color_attachment, 1, &clear_rect); in TEST_F()