/external/mesa3d/src/amd/vulkan/ |
D | radv_pass.c | 89 desc->colorAttachmentCount + in radv_CreateRenderPass() 90 (desc->pResolveAttachments ? desc->colorAttachmentCount : 0) + in radv_CreateRenderPass() 112 subpass->color_count = desc->colorAttachmentCount; in radv_CreateRenderPass() 128 if (desc->colorAttachmentCount > 0) { in radv_CreateRenderPass() 130 p += desc->colorAttachmentCount; in radv_CreateRenderPass() 132 for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) { in radv_CreateRenderPass() 143 p += desc->colorAttachmentCount; in radv_CreateRenderPass() 145 for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) { in radv_CreateRenderPass()
|
D | radv_meta_clear.c | 219 .colorAttachmentCount = 1, in create_color_renderpass() 468 .colorAttachmentCount = 0, in create_depthstencil_renderpass() 1237 .colorAttachmentCount = 0, in radv_clear_image_layer() 1251 subpass_desc.colorAttachmentCount = 1; in radv_clear_image_layer()
|
D | radv_meta_blit.c | 740 .colorAttachmentCount = 1, in radv_device_init_meta_blit_color() 902 .colorAttachmentCount = 0, in radv_device_init_meta_blit_depth() 1063 .colorAttachmentCount = 0, in radv_device_init_meta_blit_stencil()
|
D | radv_meta_blit2d.c | 726 .colorAttachmentCount = 1, in blit2d_init_color_pipeline() 891 .colorAttachmentCount = 0, in blit2d_init_depth_only_pipeline() 1053 .colorAttachmentCount = 0, in blit2d_init_stencil_only_pipeline()
|
D | radv_meta_decompress.c | 60 .colorAttachmentCount = 0, in create_pass()
|
D | radv_meta_resolve.c | 82 .colorAttachmentCount = 2, in create_pass()
|
D | radv_meta_resolve_fs.c | 235 .colorAttachmentCount = 1, in create_resolve_pipeline()
|
/external/vulkan-validation-layers/layers/ |
D | convert_to_renderpass2.cpp | 58 out_struct->colorAttachmentCount = in_struct->colorAttachmentCount; in ConvertVkSubpassDescriptionToV2KHR() 70 if (out_struct->colorAttachmentCount && in_struct->pColorAttachments) { in ConvertVkSubpassDescriptionToV2KHR() 71 …t_struct->pColorAttachments = new safe_VkAttachmentReference2KHR[out_struct->colorAttachmentCount]; in ConvertVkSubpassDescriptionToV2KHR() 72 for (uint32_t i = 0; i < out_struct->colorAttachmentCount; ++i) { in ConvertVkSubpassDescriptionToV2KHR() 76 if (out_struct->colorAttachmentCount && in_struct->pResolveAttachments) { in ConvertVkSubpassDescriptionToV2KHR() 77 …struct->pResolveAttachments = new safe_VkAttachmentReference2KHR[out_struct->colorAttachmentCount]; in ConvertVkSubpassDescriptionToV2KHR() 78 for (uint32_t i = 0; i < out_struct->colorAttachmentCount; ++i) { in ConvertVkSubpassDescriptionToV2KHR()
|
D | stateless_validation.h | 860 if (pCreateInfo->pSubpasses[i].colorAttachmentCount > max_color_attachments) { in CreateRenderPassGeneric() 865 … pCreateInfo->pSubpasses[i].colorAttachmentCount, max_color_attachments); in CreateRenderPassGeneric() 879 …for (uint32_t i = 0; i < pCreateInfo->pSubpasses[subpass].colorAttachmentCount && !uses_color; ++i) in RecordRenderPass()
|
D | core_validation.cpp | 826 …maxColorAttachmentCount = std::max(primary_desc.colorAttachmentCount, secondary_desc.colorAttachme… in ValidateSubpassCompatibility() 829 if (i < primary_desc.colorAttachmentCount) { in ValidateSubpassCompatibility() 832 if (i < secondary_desc.colorAttachmentCount) { in ValidateSubpassCompatibility() 839 if (i < primary_desc.colorAttachmentCount && primary_desc.pResolveAttachments) { in ValidateSubpassCompatibility() 842 if (i < secondary_desc.colorAttachmentCount && secondary_desc.pResolveAttachments) { in ValidateSubpassCompatibility() 1032 for (i = 0; i < subpass_desc->colorAttachmentCount; i++) { in ValidatePipelineDrawtimeState() 1307 if (color_blend_state->attachmentCount != subpass_desc->colorAttachmentCount) { in ValidatePipelineUnlocked() 1313 … pPipeline->graphicsPipelineCI.subpass, subpass_desc->colorAttachmentCount, in ValidatePipelineUnlocked() 1556 for (uint32_t i = 0; i < subpass_desc->colorAttachmentCount; ++i) { in ValidatePipelineUnlocked() 1597 for (uint32_t i = 0; i < subpass_desc->colorAttachmentCount; i++) { in ValidatePipelineUnlocked() [all …]
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_pass.c | 32 desc->colorAttachmentCount + in num_subpass_attachments() 33 (desc->pResolveAttachments ? desc->colorAttachmentCount : 0) + in num_subpass_attachments() 109 subpass->color_count = desc->colorAttachmentCount; in anv_CreateRenderPass() 135 if (desc->colorAttachmentCount > 0) { in anv_CreateRenderPass() 137 subpass_attachments += desc->colorAttachmentCount; in anv_CreateRenderPass() 139 for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) { in anv_CreateRenderPass() 156 subpass_attachments += desc->colorAttachmentCount; in anv_CreateRenderPass() 158 for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) { in anv_CreateRenderPass()
|
/external/swiftshader/src/Vulkan/ |
D | VkRenderPass.cpp | 63 if(subpass.colorAttachmentCount > 0) in RenderPass() 65 size_t colorAttachmentsSize = subpass.colorAttachmentCount * sizeof(VkAttachmentReference); in RenderPass() 118 uint32_t nbAttachments = subpass.inputAttachmentCount + subpass.colorAttachmentCount; in ComputeRequiredAllocationSize() 121 nbAttachments += subpass.colorAttachmentCount; in ComputeRequiredAllocationSize()
|
D | VkFramebuffer.cpp | 80 ASSERT(attachment.colorAttachment < subpass.colorAttachmentCount); in clear()
|
/external/deqp/external/vulkancts/modules/vulkan/multiview/ |
D | vktMultiViewRenderPassUtil.hpp | 94 deUint32 colorAttachmentCount, 111 deUint32 colorAttachmentCount,
|
D | vktMultiViewRenderPassUtil.cpp | 135 colorAttachmentCount = colorAttachmentCount_; in SubpassDescription1() 163 colorAttachmentCount = colorAttachmentCount_; in SubpassDescription2()
|
/external/skia/src/gpu/vk/ |
D | GrVkRenderPass.cpp | 86 subpassDesc.colorAttachmentCount = 1; in init() 96 subpassDesc.colorAttachmentCount = 0; in init()
|
/external/skqp/src/gpu/vk/ |
D | GrVkRenderPass.cpp | 86 subpassDesc.colorAttachmentCount = 1; in init() 96 subpassDesc.colorAttachmentCount = 0; in init()
|
/external/deqp/external/vulkancts/modules/vulkan/renderpass/ |
D | vktRenderPassTestsUtil.hpp | 104 deUint32 colorAttachmentCount, 121 deUint32 colorAttachmentCount,
|
D | vktRenderPassTestsUtil.cpp | 138 colorAttachmentCount = colorAttachmentCount_; in SubpassDescription1() 166 colorAttachmentCount = colorAttachmentCount_; in SubpassDescription2()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkTypeUtil.inl | 285 …ntCount, const VkAttachmentReference* pInputAttachments, deUint32 colorAttachmentCount, const VkAt… argument 292 res.colorAttachmentCount = colorAttachmentCount;
|
/external/deqp/external/vulkancts/modules/vulkan/image/ |
D | vktImageTestsUtil.hpp | 133 const deUint32 colorAttachmentCount,
|
D | vktImageTestsUtil.cpp | 279 const deUint32 colorAttachmentCount, in makeGraphicsPipeline() argument 338 …std::vector<VkPipelineColorBlendAttachmentState> colorAttachments (colorAttachmentCount, colorB… in makeGraphicsPipeline()
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiImageClearingTests.cpp | 777 deUint32 colorAttachmentCount = 1; in createRenderPass() local 781 colorAttachmentCount = 0; in createRenderPass() 786 colorAttachmentCount = 1; in createRenderPass() 797 colorAttachmentCount, // deUint32 colorAttachmentCount; in createRenderPass()
|
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
D | vktDrawCreateInfoUtil.cpp | 478 colorAttachmentCount = _colorAttachmentCount; in SubpassDescription() 506 rhs.pColorAttachments, rhs.pColorAttachments + rhs.colorAttachmentCount); in SubpassDescription() 510 rhs.pResolveAttachments, rhs.pResolveAttachments + rhs.colorAttachmentCount); in SubpassDescription()
|
D | vktDrawCreateInfoUtil.hpp | 162 deUint32 colorAttachmentCount,
|