/third_party/mesa3d/src/microsoft/vulkan/ |
D | dzn_cmd_buffer.c | 3509 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/ |
D | radv_cmd_buffer.c | 8888 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/ |
D | tu_pass.h | 118 const VkRenderingInfo *pRenderingInfo);
|
D | tu_cmd_buffer.c | 3887 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 …]
|
D | tu_device.h | 439 const VkRenderingInfo *pRenderingInfo);
|
D | tu_device.c | 2687 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/ |
D | VK_QCOM_tile_properties.adoc | 64 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);
|
D | VK_KHR_dynamic_rendering.adoc | 58 const VkRenderingInfoKHR* pRenderingInfo);
|
/third_party/mesa3d/src/intel/vulkan/ |
D | genX_cmd_buffer.c | 6460 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/ |
D | vn_command_buffer.c | 963 const VkRenderingInfo *pRenderingInfo) in vn_CmdBeginRendering() argument 965 VN_CMD_ENQUEUE(vkCmdBeginRendering, commandBuffer, pRenderingInfo); in vn_CmdBeginRendering()
|
/third_party/mesa3d/src/virtio/venus-protocol/ |
D | vn_protocol_driver_command_buffer.h | 7875 …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/ |
D | vkDeviceDriverImpl.inl | 2122 …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);
|
D | vkFunctionPointerTypes.inl | 599 …nRenderingFunc) (VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo); 600 …enderingKHRFunc) (VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo); 625 …ePropertiesQCOMFunc) (VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert…
|
D | vkVirtualDeviceInterface.inl | 429 …endering (VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo) const = 0; 453 …eringTilePropertiesQCOM (VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert…
|
D | vkConcreteDeviceInterface.inl | 429 …ginRendering (VkCommandBuffer commandBuffer, const VkRenderingInfo* pRenderingInfo) const; 453 …eringTilePropertiesQCOM (VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropert…
|
D | vkNullDriverImpl.inl | 3688 …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);
|
D | vkVulkan_c.inl | 8273 … 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/ |
D | vulkan.hpp | 2630 …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()
|
D | vulkan_core.h | 7248 … 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/ |
D | trampoline.c | 3042 …PI_CALL vkCmdBeginRendering(VkCommandBuffer commandBuffer, const VkRenderingInfo *pRenderingInfo) { in vkCmdBeginRendering() argument 3044 disp->CmdBeginRendering(commandBuffer, pRenderingInfo); in vkCmdBeginRendering()
|
/third_party/mesa3d/include/vulkan/ |
D | vulkan_core.h | 7163 … 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/ |
D | vk_loader_extensions.c | 2705 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()
|
D | vk_dispatch_table_helper.h | 74 … 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/ |
D | renderpass.adoc | 30 * 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
|
D | renderpass.txt | 22 * 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
|