Home
last modified time | relevance | path

Searched refs:pRenderingInfo (Results 1 – 25 of 28) sorted by relevance

12

/third_party/mesa3d/src/microsoft/vulkan/
Ddzn_cmd_buffer.c3509 const VkRenderingInfo *pRenderingInfo) in dzn_CmdBeginRendering() argument
3514 .left = pRenderingInfo->renderArea.offset.x, in dzn_CmdBeginRendering()
3515 .top = pRenderingInfo->renderArea.offset.y, in dzn_CmdBeginRendering()
3516 … .right = (LONG)(pRenderingInfo->renderArea.offset.x + pRenderingInfo->renderArea.extent.width), in dzn_CmdBeginRendering()
3517 … .bottom = (LONG)(pRenderingInfo->renderArea.offset.y + pRenderingInfo->renderArea.extent.height), in dzn_CmdBeginRendering()
3526 cmdbuf->state.render.flags = pRenderingInfo->flags; in dzn_CmdBeginRendering()
3527 cmdbuf->state.render.layer_count = pRenderingInfo->layerCount; in dzn_CmdBeginRendering()
3528 cmdbuf->state.render.view_mask = pRenderingInfo->viewMask; in dzn_CmdBeginRendering()
3533 cmdbuf->state.render.attachments.color_count = pRenderingInfo->colorAttachmentCount; in dzn_CmdBeginRendering()
3534 for (uint32_t i = 0; i < pRenderingInfo->colorAttachmentCount; i++) { in dzn_CmdBeginRendering()
[all …]
/third_party/mesa3d/src/amd/vulkan/
Dradv_cmd_buffer.c8888 radv_CmdBeginRendering(VkCommandBuffer commandBuffer, const VkRenderingInfo *pRenderingInfo) in radv_CmdBeginRendering() argument
8892 pRenderingInfo->pNext, RENDERING_FRAGMENT_SHADING_RATE_ATTACHMENT_INFO_KHR); in radv_CmdBeginRendering()
8909 .viewMask = pRenderingInfo->viewMask, in radv_CmdBeginRendering()
8910 .colorAttachmentCount = pRenderingInfo->colorAttachmentCount, in radv_CmdBeginRendering()
8915 for (unsigned i = 0; i < pRenderingInfo->colorAttachmentCount; ++i) { in radv_CmdBeginRendering()
8925 if (pRenderingInfo->pColorAttachments[i].imageView == VK_NULL_HANDLE) in radv_CmdBeginRendering()
8928 const VkRenderingAttachmentInfo *info = &pRenderingInfo->pColorAttachments[i]; in radv_CmdBeginRendering()
8948 if (pRenderingInfo->flags & VK_RENDERING_RESUMING_BIT) in radv_CmdBeginRendering()
8951 if (pRenderingInfo->flags & VK_RENDERING_SUSPENDING_BIT) in radv_CmdBeginRendering()
8955 !(pRenderingInfo->flags & VK_RENDERING_SUSPENDING_BIT)) { in radv_CmdBeginRendering()
[all …]
/third_party/mesa3d/src/freedreno/vulkan/
Dtu_pass.h118 const VkRenderingInfo *pRenderingInfo);
Dtu_cmd_buffer.c3887 const VkRenderingInfo *pRenderingInfo) in tu_CmdBeginRendering() argument
3892 tu_setup_dynamic_render_pass(cmd, pRenderingInfo); in tu_CmdBeginRendering()
3893 tu_setup_dynamic_framebuffer(cmd, pRenderingInfo); in tu_CmdBeginRendering()
3898 cmd->state.render_area = pRenderingInfo->renderArea; in tu_CmdBeginRendering()
3902 for (unsigned i = 0; i < pRenderingInfo->colorAttachmentCount; i++) { in tu_CmdBeginRendering()
3904 if (!pRenderingInfo->pColorAttachments[i].imageView) in tu_CmdBeginRendering()
3908 pRenderingInfo->pColorAttachments[i].imageView); in tu_CmdBeginRendering()
3910 clear_values[a] = pRenderingInfo->pColorAttachments[i].clearValue; in tu_CmdBeginRendering()
3915 pRenderingInfo->pColorAttachments[i].resolveImageView); in tu_CmdBeginRendering()
3921 if (pRenderingInfo->pDepthAttachment || pRenderingInfo->pStencilAttachment) { in tu_CmdBeginRendering()
[all …]
Dtu_device.h439 const VkRenderingInfo *pRenderingInfo);
Dtu_device.c2687 const VkRenderingInfo *pRenderingInfo) in tu_setup_dynamic_framebuffer() argument
2693 framebuffer->width = pRenderingInfo->renderArea.offset.x + in tu_setup_dynamic_framebuffer()
2694 pRenderingInfo->renderArea.extent.width; in tu_setup_dynamic_framebuffer()
2695 framebuffer->height = pRenderingInfo->renderArea.offset.y + in tu_setup_dynamic_framebuffer()
2696 pRenderingInfo->renderArea.extent.height; in tu_setup_dynamic_framebuffer()
2697 framebuffer->layers = pRenderingInfo->layerCount; in tu_setup_dynamic_framebuffer()
/third_party/vk-gl-cts/external/vulkan-docs/src/proposals/
DVK_QCOM_tile_properties.adoc64 const VkRenderingInfo* pRenderingInfo,
68 When using dynamic rendering, use the above command to query the tile properties. `pRenderingInfo` …
147 // `pRenderingInfo` is pointer to the `VkRenderingInfoKHR` struct that was passed to `vkCmdBeginRen…
148 vkGetDynamicRenderingTilePropertiesQCOM(device, pRenderingInfo, &tileProperties);
DVK_KHR_dynamic_rendering.adoc58 const VkRenderingInfoKHR* pRenderingInfo);
/third_party/mesa3d/src/intel/vulkan/
DgenX_cmd_buffer.c6460 const VkRenderingInfo* pRenderingInfo) in genX()
6475 gfx->rendering_flags = pRenderingInfo->flags; in genX()
6476 gfx->render_area = pRenderingInfo->renderArea; in genX()
6477 gfx->view_mask = pRenderingInfo->viewMask; in genX()
6478 gfx->layer_count = pRenderingInfo->layerCount; in genX()
6495 const uint32_t color_att_count = pRenderingInfo->colorAttachmentCount; in genX()
6503 if (pRenderingInfo->pColorAttachments[i].imageView == VK_NULL_HANDLE) in genX()
6507 &pRenderingInfo->pColorAttachments[i]; in genX()
6574 uint32_t clear_view_mask = pRenderingInfo->viewMask; in genX()
6654 if (pRenderingInfo->viewMask) { in genX()
[all …]
/third_party/mesa3d/src/virtio/vulkan/
Dvn_command_buffer.c963 const VkRenderingInfo *pRenderingInfo) in vn_CmdBeginRendering() argument
965 VN_CMD_ENQUEUE(vkCmdBeginRendering, commandBuffer, pRenderingInfo); in vn_CmdBeginRendering()
/third_party/mesa3d/src/virtio/venus-protocol/
Dvn_protocol_driver_command_buffer.h7875 …vn_sizeof_vkCmdBeginRendering(VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo) in vn_sizeof_vkCmdBeginRendering() argument
7882 cmd_size += vn_sizeof_simple_pointer(pRenderingInfo); in vn_sizeof_vkCmdBeginRendering()
7883 if (pRenderingInfo) in vn_sizeof_vkCmdBeginRendering()
7884 cmd_size += vn_sizeof_VkRenderingInfo(pRenderingInfo); in vn_sizeof_vkCmdBeginRendering()
7889 … VkCommandFlagsEXT cmd_flags, VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo) in vn_encode_vkCmdBeginRendering() argument
7897 if (vn_encode_simple_pointer(enc, pRenderingInfo)) in vn_encode_vkCmdBeginRendering()
7898 vn_encode_VkRenderingInfo(enc, pRenderingInfo); in vn_encode_vkCmdBeginRendering()
7901 …eof_vkCmdBeginRendering_reply(VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo) in vn_sizeof_vkCmdBeginRendering_reply() argument
7912 …ly(struct vn_cs_decoder *dec, VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo) in vn_decode_vkCmdBeginRendering_reply() argument
9915 …EXT cmd_flags, VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo, struct vn_ins… in vn_submit_vkCmdBeginRendering() argument
[all …]
/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/
DvkDeviceDriverImpl.inl2122 …ver::cmdBeginRendering (VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo) const
2124 m_vk.cmdBeginRendering(commandBuffer, pRenderingInfo);
2242 …RenderingTilePropertiesQCOM (VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert… argument
2244 return m_vk.getDynamicRenderingTilePropertiesQCOM(device, pRenderingInfo, pProperties);
DvkFunctionPointerTypes.inl599 …nRenderingFunc) (VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo);
600 …enderingKHRFunc) (VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo);
625 …ePropertiesQCOMFunc) (VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert…
DvkVirtualDeviceInterface.inl429 …endering (VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo) const = 0;
453 …eringTilePropertiesQCOM (VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert…
DvkConcreteDeviceInterface.inl429 …ginRendering (VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo) const;
453 …eringTilePropertiesQCOM (VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert…
DvkNullDriverImpl.inl3688 …VKAPI_CALL cmdBeginRendering (VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo) argument
3691 DE_UNREF(pRenderingInfo);
3853 …RenderingTilePropertiesQCOM (VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert… argument
3856 DE_UNREF(pRenderingInfo);
DvkVulkan_c.inl8273 … commandBuffer, const VkRenderingInfo* pRenderingInfo);
8383 const VkRenderingInfo* pRenderingInfo);
9359 … commandBuffer, const VkRenderingInfo* pRenderingInfo);
9365 const VkRenderingInfo* pRenderingInfo);
17408 …RenderingTilePropertiesQCOM)(VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert…
17419 const VkRenderingInfo* pRenderingInfo,
/third_party/vulkan-headers/include/vulkan/
Dvulkan.hpp2630 …void vkCmdBeginRendering( VkCommandBuffer commandBuffer, const VkRenderingInfo * pRenderingInfo ) … in vkCmdBeginRendering()
2632 return ::vkCmdBeginRendering( commandBuffer, pRenderingInfo ); in vkCmdBeginRendering()
3294 …RenderingKHR( VkCommandBuffer commandBuffer, const VkRenderingInfo * pRenderingInfo ) const VULKAN… in vkCmdBeginRenderingKHR()
3296 return ::vkCmdBeginRenderingKHR( commandBuffer, pRenderingInfo ); in vkCmdBeginRenderingKHR()
5905 const VkRenderingInfo * pRenderingInfo, in vkGetDynamicRenderingTilePropertiesQCOM() argument
5908 return ::vkGetDynamicRenderingTilePropertiesQCOM( device, pRenderingInfo, pProperties ); in vkGetDynamicRenderingTilePropertiesQCOM()
Dvulkan_core.h7248 … commandBuffer, const VkRenderingInfo* pRenderingInfo);
7358 const VkRenderingInfo* pRenderingInfo);
8334 … commandBuffer, const VkRenderingInfo* pRenderingInfo);
8340 const VkRenderingInfo* pRenderingInfo);
16577 …RenderingTilePropertiesQCOM)(VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert…
16588 const VkRenderingInfo* pRenderingInfo,
/third_party/vulkan-loader/loader/
Dtrampoline.c3042 …PI_CALL vkCmdBeginRendering(VkCommandBuffer commandBuffer, const VkRenderingInfo *pRenderingInfo) { in vkCmdBeginRendering() argument
3044 disp->CmdBeginRendering(commandBuffer, pRenderingInfo); in vkCmdBeginRendering()
/third_party/mesa3d/include/vulkan/
Dvulkan_core.h7163 … commandBuffer, const VkRenderingInfo* pRenderingInfo);
7273 const VkRenderingInfo* pRenderingInfo);
7842 … commandBuffer, const VkRenderingInfo* pRenderingInfo);
7848 const VkRenderingInfo* pRenderingInfo);
14503 …RenderingTilePropertiesQCOM)(VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert…
14514 const VkRenderingInfo* pRenderingInfo,
/third_party/vulkan-loader/loader/generated/
Dvk_loader_extensions.c2705 const VkRenderingInfo* pRenderingInfo) { in CmdBeginRenderingKHR() argument
2713 disp->CmdBeginRenderingKHR(commandBuffer, pRenderingInfo); in CmdBeginRenderingKHR()
7425 const VkRenderingInfo* pRenderingInfo, in GetDynamicRenderingTilePropertiesQCOM() argument
7434 return disp->GetDynamicRenderingTilePropertiesQCOM(device, pRenderingInfo, pProperties); in GetDynamicRenderingTilePropertiesQCOM()
Dvk_dispatch_table_helper.h74 … commandBuffer, const VkRenderingInfo* pRenderingInfo) { } in StubCmdBeginRenderingKHR() argument
381 …cRenderingTilePropertiesQCOM(VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert… in StubGetDynamicRenderingTilePropertiesQCOM() argument
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Drenderpass.adoc30 * pname:pRenderingInfo is a pointer to a slink:VkRenderingInfo structure
36 If pname:pRenderingInfo->flags includes ename:VK_RENDERING_RESUMING_BIT then
51 pname:pRenderingInfo->flags must: not include
772 The contents of pname:pRenderingInfo must: match between suspended render
1349 If the value of pname:pRenderingInfo->flags used to begin this render pass
1423 * pname:pRenderingInfo is a pointer to the slink:VkRenderingInfo structure
Drenderpass.txt22 * pname:pRenderingInfo is a pointer to a slink:VkRenderingInfoKHR
28 If pname:pRenderingInfo->flags includes ename:VK_RENDERING_RESUMING_BIT_KHR
39 pname:pRenderingInfo->flags must: not include
505 The contents of pname:pRenderingInfo must: match between suspended render
818 If the value of pname:pRenderingInfo->flags used to begin this render pass

12