/external/deqp/external/vulkancts/modules/vulkan/ |
vktRenderPassTests.cpp | 427 class Subpass 430 Subpass (VkPipelineBindPoint pipelineBindPoint, 574 const vector<Subpass>& subpasses, 583 const vector<Subpass>& getSubpasses (void) const { return m_subpasses; } 588 const vector<Subpass> m_subpasses; 687 const vector<Subpass>& subpasses = renderPass.getSubpasses(); 691 const tcu::ScopedLogSection subpassSection (log, "Subpass" + de::toString(subpassNdx), "Subpass " + de::toString(subpassNdx)); 692 const Subpass& subpass = subpasses[subpassNdx] local 2321 const Subpass& subpass = subpasses[subpassNdx]; local 3039 const Subpass& subpass = subpasses[subpassNdx]; local 3075 const Subpass& subpass = subpasses[subpassNdx]; local 3372 const Subpass& subpass = subpasses[subpassNdx]; local 3534 const Subpass& subpass = renderPassInfo.getSubpasses()[subpassNdx]; local 3620 const Subpass& subpass = renderPass.getSubpasses()[subpassNdx]; local 3722 const Subpass& subpass = subpasses[subpassNdx]; local [all...] |
vktSynchronization.cpp | [all...] |
/external/skia/src/gpu/vk/ |
GrVkRenderPass.cpp | 42 // that are used by the subpass. 62 // setup subpass use of attachment 81 // setup subpass use of attachment 96 // setup subpass use of attachment
|
GrVkResourceProvider.h | 70 // optional resolve attachment, and only one subpass
|
GrVkPipeline.cpp | 487 pipelineCreateInfo.subpass = 0;
|
/external/vulkan-validation-layers/tests/ |
vkrenderframework.cpp | 326 VkSubpassDescription subpass = {}; local 327 subpass.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS; 328 subpass.flags = 0; 329 subpass.inputAttachmentCount = 0; 330 subpass.pInputAttachments = NULL; 331 subpass.colorAttachmentCount = targets; 332 subpass.pColorAttachments = color_references.data(); 333 subpass.pResolveAttachments = NULL; 356 subpass.pDepthStencilAttachment = &ds_reference; 358 subpass.pDepthStencilAttachment = NULL [all...] |
/external/vulkan-validation-layers/layers/ |
core_validation.cpp | [all...] |
image.h | 40 IMAGE_RENDERPASS_INVALID_DS_ATTACHMENT, // If no depth attachment for a RenderPass, verify that subpass DS attachment is set to
|
core_validation.h | 319 // present in active subpass 495 const VkSubpassDescription *subpass = &pCreateInfo->pSubpasses[i]; local 499 color_formats.reserve(subpass->colorAttachmentCount); 500 for (j = 0; j < subpass->colorAttachmentCount; j++) { 501 const uint32_t att = subpass->pColorAttachments[j].attachment; [all...] |
vk_validation_layer_details.md | 59 | MSAA Sample Count | Verifies that Pipeline, RenderPass, and Subpass sample counts are consistent | NUM_SAMPLES_MISMATCH | vkCmdBindPipeline vkCmdBeginRenderPass vkCmdNextSubpass | NumSamplesMismatch | NA | 85 | Attachment References in Subpass | Attachment reference must be present in active subpass | MISSING_ATTACHMENT_REFERENCE | vkCmdClearAttachments | BufferInfoDescriptorUpdateError | Currently only making sure bufferInfo has buffer whose handle is known, can add further validation for bufferInfo parameters | [all...] |
/external/vulkan-validation-layers/demos/smoke/ |
Smoke.cpp | 187 VkSubpassDescription subpass = {}; local 188 subpass.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS; 189 subpass.colorAttachmentCount = 1; 190 subpass.pColorAttachments = &attachment_ref; 216 render_pass_info.pSubpasses = &subpass; 366 pipeline_info.subpass = 0;
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkStructTypes.inl | 785 deUint32 subpass; 1017 deUint32 subpass; [all...] |
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
vktDrawCreateInfoUtil.hpp | 211 void addSubpass (vk::VkSubpassDescription subpass); 449 int subpass,
|
vktDrawCreateInfoUtil.cpp | 362 RenderPassCreateInfo::addSubpass (vk::VkSubpassDescription subpass) 365 m_subpasses.push_back(subpass); [all...] |
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/ |
vktDynamicStateCreateInfoUtil.hpp | 213 void addSubpass (vk::VkSubpassDescription subpass); 451 int subpass,
|
vktDynamicStateCreateInfoUtil.cpp | 362 RenderPassCreateInfo::addSubpass (vk::VkSubpassDescription subpass) 365 m_subpasses.push_back(subpass); [all...] |
/external/deqp/external/vulkancts/modules/vulkan/query_pool/ |
vktQueryPoolCreateInfoUtil.hpp | 211 void addSubpass (vk::VkSubpassDescription subpass); 449 int subpass,
|
vktQueryPoolCreateInfoUtil.cpp | 365 RenderPassCreateInfo::addSubpass (vk::VkSubpassDescription subpass) 368 m_subpasses.push_back(subpass); [all...] |
/external/vulkan-validation-layers/ |
vk.xml | 170 <type category="bitmask">typedef <type>VkFlags</type> <name>VkSubpassDescriptionFlags</name>;</type> <!-- Subpass description flags --> 178 <type requires="VkDependencyFlagBits" category="bitmask">typedef <type>VkFlags</type> <name>VkDependencyFlags</name>;</type> <!-- Pipeline barrier and subpass dependency flags --> [all...] |
/external/deqp/external/vulkancts/modules/vulkan/api/ |
vktApiCommandBuffersTests.cpp | 354 0u, // deUint32 subpass; [all...] |
vktApiSmokeTests.cpp | 683 0u, // subpass [all...] |
vktApiBufferViewAccessTests.cpp | 586 0u, // deUint32 subpass; [all...] |
/external/deqp/doc/testspecs/VK/ |
apitests.adoc | 623 |9 | Render pass in seconday command buffer | if VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT flag is not set, the values of renderPass, framebuffer, and subpass members of the VkCommandBufferBeginInfo should be ignored | If flags has VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT set, the entire secondary command buffer is considered inside a render pass. In this case, the renderPass, framebuffer, and subpass members of the VkCommandBufferBeginInfo structure must be set as described below. Otherwise the renderPass, framebuffer, and subpass members of the VkCommandBufferBeginInfo structure are ignored, and the secondary command buffer may not contain commands that are only allowed inside a render pass. [all...] |
/external/vulkan-validation-layers/demos/ |
tri.c | 337 .subpass = 0, 398 .subpass = 0, 1166 const VkSubpassDescription subpass = { local [all...] |
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
vktPipelineDepthTests.cpp | 655 0u, // deUint32 subpass; [all...] |