Home
last modified time | relevance | path

Searched refs:inputAttachmentCount (Results 1 - 25 of 65) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkRenderPass.cpp30 uint32_t nbAttachments = subpass.inputAttachmentCount + subpass.colorAttachmentCount; in ComputeRequiredAllocationSizeT()
56 dst[i].inputAttachmentCount = src[i].inputAttachmentCount; in CopySubpasses()
292 if(subpass.inputAttachmentCount > 0) in init()
294 size_t inputAttachmentsSize = subpass.inputAttachmentCount * sizeof(VkAttachmentReference); in init()
297 pCreateInfo->pSubpasses[i].pInputAttachments, subpass.inputAttachmentCount); in init()
300 for(auto j = 0u; j < subpasses[i].inputAttachmentCount; j++) in init()
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_pass.c91 desc->inputAttachmentCount + desc->colorAttachmentCount + in panvk_CreateRenderPass2()
113 subpass->input_count = desc->inputAttachmentCount; in panvk_CreateRenderPass2()
118 if (desc->inputAttachmentCount > 0) { in panvk_CreateRenderPass2()
120 p += desc->inputAttachmentCount; in panvk_CreateRenderPass2()
122 for (uint32_t j = 0; j < desc->inputAttachmentCount; j++) { in panvk_CreateRenderPass2()
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_pass.c322 return desc->inputAttachmentCount + desc->colorAttachmentCount + in radv_num_subpass_attachments2()
394 subpass->input_count = desc->inputAttachmentCount; in radv_CreateRenderPass2()
400 if (desc->inputAttachmentCount > 0) { in radv_CreateRenderPass2()
402 p += desc->inputAttachmentCount; in radv_CreateRenderPass2()
404 for (uint32_t j = 0; j < desc->inputAttachmentCount; j++) { in radv_CreateRenderPass2()
/third_party/mesa3d/src/broadcom/vulkan/
H A Dv3dv_pass.c29 return desc->inputAttachmentCount + in num_subpass_attachments()
191 subpass->input_count = desc->inputAttachmentCount; in v3dv_CreateRenderPass2()
195 if (desc->inputAttachmentCount > 0) { in v3dv_CreateRenderPass2()
197 p += desc->inputAttachmentCount; in v3dv_CreateRenderPass2()
199 for (uint32_t j = 0; j < desc->inputAttachmentCount; j++) { in v3dv_CreateRenderPass2()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/multiview/
H A DvktMultiViewRenderPassUtil.hpp92 deUint32 inputAttachmentCount,
109 deUint32 inputAttachmentCount,
H A DvktMultiViewRenderPassUtil.cpp133 inputAttachmentCount = inputAttachmentCount_; in SubpassDescription1()
161 inputAttachmentCount = inputAttachmentCount_; in SubpassDescription2()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/multiview/
H A DvktMultiViewRenderPassUtil.hpp92 deUint32 inputAttachmentCount,
109 deUint32 inputAttachmentCount,
H A DvktMultiViewRenderPassUtil.cpp133 inputAttachmentCount = inputAttachmentCount_; in SubpassDescription1()
161 inputAttachmentCount = inputAttachmentCount_; in SubpassDescription2()
/third_party/mesa3d/src/virtio/venus-protocol/
H A Dvn_protocol_driver_render_pass.h72 size += vn_sizeof_uint32_t(&val->inputAttachmentCount); in vn_sizeof_VkSubpassDescription()
74 size += vn_sizeof_array_size(val->inputAttachmentCount); in vn_sizeof_VkSubpassDescription()
75 for (uint32_t i = 0; i < val->inputAttachmentCount; i++) in vn_sizeof_VkSubpassDescription()
113 vn_encode_uint32_t(enc, &val->inputAttachmentCount); in vn_encode_VkSubpassDescription()
115 vn_encode_array_size(enc, val->inputAttachmentCount); in vn_encode_VkSubpassDescription()
116 for (uint32_t i = 0; i < val->inputAttachmentCount; i++) in vn_encode_VkSubpassDescription()
895 size += vn_sizeof_uint32_t(&val->inputAttachmentCount); in vn_sizeof_VkSubpassDescription2_self()
897 size += vn_sizeof_array_size(val->inputAttachmentCount); in vn_sizeof_VkSubpassDescription2_self()
898 for (uint32_t i = 0; i < val->inputAttachmentCount; i++) in vn_sizeof_VkSubpassDescription2_self()
973 vn_encode_uint32_t(enc, &val->inputAttachmentCount); in vn_encode_VkSubpassDescription2_self()
[all...]
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_render_pass.c74 reference_count += pCreateInfo->pSubpasses[i].inputAttachmentCount; in vk_common_CreateRenderPass()
140 .inputAttachmentCount = pCreateInfo->pSubpasses[i].inputAttachmentCount, in vk_common_CreateRenderPass()
153 subpasses[i].inputAttachmentCount, in vk_common_CreateRenderPass()
188 assert(ref->inputAttachmentIndex < subpass->inputAttachmentCount); in vk_common_CreateRenderPass()
321 return desc->inputAttachmentCount + in num_subpass_attachments2()
498 subpass->input_count = desc->inputAttachmentCount; in vk_common_CreateRenderPass2()
499 if (desc->inputAttachmentCount > 0) { in vk_common_CreateRenderPass2()
501 next_subpass_attachment += desc->inputAttachmentCount; in vk_common_CreateRenderPass2()
503 for (uint32_t a = 0; a < desc->inputAttachmentCount; in vk_common_CreateRenderPass2()
[all...]
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_pass.c213 for (unsigned j = 0; j < subpass->inputAttachmentCount; j++) { in tu_render_pass_add_implicit_deps()
306 for (unsigned j = 0; j < subpass->inputAttachmentCount; j++) { in tu_render_pass_add_implicit_deps()
804 desc->inputAttachmentCount + desc->colorAttachmentCount + in tu_CreateRenderPass2()
828 subpass->input_count = desc->inputAttachmentCount; in tu_CreateRenderPass2()
844 if (desc->inputAttachmentCount > 0) { in tu_CreateRenderPass2()
846 p += desc->inputAttachmentCount; in tu_CreateRenderPass2()
848 for (uint32_t j = 0; j < desc->inputAttachmentCount; j++) { in tu_CreateRenderPass2()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkPlatform.cpp555 checkSubpassSupport(pCreateInfo->pSubpasses[subpassNdx].inputAttachmentCount, pCreateInfo->pSubpasses[subpassNdx].preserveAttachmentCount); in createRenderPassHandlerNorm()
574 checkSubpassSupport(pCreateInfo->pSubpasses[subpassNdx].inputAttachmentCount, pCreateInfo->pSubpasses[subpassNdx].preserveAttachmentCount); in createRenderPassHandlerStat()
595 checkSubpassSupport(pCreateInfo->pSubpasses[subpassNdx].inputAttachmentCount, pCreateInfo->pSubpasses[subpassNdx].preserveAttachmentCount); in createRenderPass2HandlerNorm()
614 checkSubpassSupport(pCreateInfo->pSubpasses[subpassNdx].inputAttachmentCount, pCreateInfo->pSubpasses[subpassNdx].preserveAttachmentCount); in createRenderPass2HandlerStat()
874 void DeviceDriverSC::checkSubpassSupport (deUint32 inputAttachmentCount, in checkSubpassSupport() argument
879 if (inputAttachmentCount > m_physicalDeviceVulkanSC10Properties.maxSubpassInputAttachments) in checkSubpassSupport()
881 const std::string msg = "Requested inputAttachmentCount (" + de::toString(inputAttachmentCount) in checkSubpassSupport()
H A DvkPlatform.hpp320 void checkSubpassSupport (deUint32 inputAttachmentCount,
/third_party/skia/src/gpu/vk/
H A DGrVkRenderPass.cpp145 subpassDescMain.inputAttachmentCount = 0; in Create()
190 subpassDescMain.inputAttachmentCount = 1; in Create()
240 subpassDescLoad.inputAttachmentCount = 1; in Create()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassTestsUtil.hpp98 deUint32 inputAttachmentCount,
115 deUint32 inputAttachmentCount,
H A DvktRenderPassTestsUtil.cpp135 inputAttachmentCount = inputAttachmentCount_; in SubpassDescription1()
163 inputAttachmentCount = inputAttachmentCount_; in SubpassDescription2()
684 (deUint32)inputAttachmentReferences.size(), // deUint32 inputAttachmentCount; || deUint32 inputAttachmentCount; in createSubpassDescription()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassTestsUtil.hpp98 deUint32 inputAttachmentCount,
115 deUint32 inputAttachmentCount,
H A DvktRenderPassTestsUtil.cpp135 inputAttachmentCount = inputAttachmentCount_; in SubpassDescription1()
163 inputAttachmentCount = inputAttachmentCount_; in SubpassDescription2()
684 (deUint32)inputAttachmentReferences.size(), // deUint32 inputAttachmentCount; || deUint32 inputAttachmentCount; in createSubpassDescription()
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_pass.c77 return desc->inputAttachmentCount + desc->colorAttachmentCount + in pvr_num_subpass_attachments()
452 subpass->input_count = desc->inputAttachmentCount; in pvr_CreateRenderPass2()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageDepthStencilDescriptorTests.cpp268 void addDescriptors (IODescVec& descriptors, uint32_t& inputAttachmentCount, const ROAccessVec& accesses, VkImageAspectFlagBits aspect) in addDescriptors() argument
283 descriptor.inputAttachmentIndex = tcu::just(inputAttachmentCount++); in addDescriptors()
293 uint32_t inputAttachmentCount = 0u; in getDescriptors() local
296 addDescriptors(descriptors, inputAttachmentCount, *depthROAccesses, VK_IMAGE_ASPECT_DEPTH_BIT); in getDescriptors()
299 addDescriptors(descriptors, inputAttachmentCount, *stencilROAccesses, VK_IMAGE_ASPECT_STENCIL_BIT); in getDescriptors()
892 (needsIA ? 1u : 0u), // uint32_t inputAttachmentCount; in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/
H A DvktImageDepthStencilDescriptorTests.cpp268 void addDescriptors (IODescVec& descriptors, uint32_t& inputAttachmentCount, const ROAccessVec& accesses, VkImageAspectFlagBits aspect) in addDescriptors() argument
283 descriptor.inputAttachmentIndex = tcu::just(inputAttachmentCount++); in addDescriptors()
293 uint32_t inputAttachmentCount = 0u; in getDescriptors() local
296 addDescriptors(descriptors, inputAttachmentCount, *depthROAccesses, VK_IMAGE_ASPECT_DEPTH_BIT); in getDescriptors()
299 addDescriptors(descriptors, inputAttachmentCount, *stencilROAccesses, VK_IMAGE_ASPECT_STENCIL_BIT); in getDescriptors()
892 (needsIA ? 1u : 0u), // uint32_t inputAttachmentCount; in iterate()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DRenderPassCache.cpp206 subpassDesc.inputAttachmentCount = 0; in CreateRenderPassForQuery()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
H A DvktDrawCreateInfoUtil.cpp476 inputAttachmentCount = _inputAttachmentCount; in SubpassDescription()
503 rhs.pInputAttachments, rhs.pInputAttachments + rhs.inputAttachmentCount); in SubpassDescription()
H A DvktDrawCreateInfoUtil.hpp160 deUint32 inputAttachmentCount,
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/
H A DvktDrawCreateInfoUtil.cpp476 inputAttachmentCount = _inputAttachmentCount; in SubpassDescription()
503 rhs.pInputAttachments, rhs.pInputAttachments + rhs.inputAttachmentCount); in SubpassDescription()

Completed in 30 milliseconds

123