Home
last modified time | relevance | path

Searched refs:clear_rect (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/amd/vulkan/
Dradv_meta_clear.c331 const VkClearRect *clear_rect, in emit_color_clear() argument
381 .x = clear_rect->rect.offset.x, in emit_color_clear()
382 .y = clear_rect->rect.offset.y, in emit_color_clear()
383 .width = clear_rect->rect.extent.width, in emit_color_clear()
384 .height = clear_rect->rect.extent.height, in emit_color_clear()
389 radv_CmdSetScissor(radv_cmd_buffer_to_handle(cmd_buffer), 0, 1, &clear_rect->rect); in emit_color_clear()
396 radv_CmdDraw(cmd_buffer_h, 3, clear_rect->layerCount, 0, clear_rect->baseArrayLayer); in emit_color_clear()
546 const VkClearRect *clear_rect, in depth_view_can_fast_clear() argument
552 if (clear_rect->rect.offset.x || clear_rect->rect.offset.y || in depth_view_can_fast_clear()
553 clear_rect->rect.extent.width != iview->extent.width || in depth_view_can_fast_clear()
[all …]
/external/mesa3d/src/gallium/drivers/swr/
Dswr_clear.cpp71 SWR_RECT clear_rect; in swr_clear() local
74 clear_rect = ctx->swr_scissor; in swr_clear()
76 clear_rect = {0, 0, (int32_t)fb->width, (int32_t)fb->height}; in swr_clear()
83 clear_rect); in swr_clear()
/external/mesa3d/src/intel/vulkan/
Danv_blorp.c1158 VkClearRect clear_rect = { in anv_cmd_buffer_clear_subpass() local
1320 &clear_att, 1, &clear_rect); in anv_cmd_buffer_clear_subpass()
/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp714 …VkClearRect clear_rect = {{{0, 0}, {static_cast<uint32_t>(m_width), static_cast<uint32_t>(m_height… in VKTriangleTest() local
716 vkCmdClearAttachments(m_commandBuffer->handle(), 1, &color_attachment, 1, &clear_rect); in VKTriangleTest()
14707 VkClearRect clear_rect = {{{0, 0}, {32, 32}}}; in TEST_F() local
14708 vkCmdClearAttachments(m_commandBuffer->handle(), 1, &color_attachment, 1, &clear_rect); in TEST_F()
17160 VkClearRect clear_rect = {{{0, 0}, {(uint32_t)m_width, (uint32_t)m_height}}, 0, 1}; in TEST_F() local
17161 vkCmdClearAttachments(secondary.handle(), 1, &color_attachment, 1, &clear_rect); in TEST_F()
17164 clear_rect = {{{0, 0}, {99999999, 99999999}}, 0, 0}; in TEST_F()
17219 VkClearRect clear_rect = {{{0, 0}, {(uint32_t)m_width, (uint32_t)m_height}}, 0, 1}; in TEST_F() local
17224 vkCmdClearAttachments(m_commandBuffer->handle(), 1, &color_attachment, 1, &clear_rect); in TEST_F()
17227 clear_rect.rect.extent.width = renderPassBeginInfo().renderArea.extent.width + 4; in TEST_F()
[all …]