Home
last modified time | relevance | path

Searched refs:inheritanceInfo (Results 1 – 13 of 13) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
DCommandGraph.cpp32 const VkCommandBufferInheritanceInfo &inheritanceInfo, in InitAndBeginCommandBuffer() argument
45 const VkCommandBufferInheritanceInfo &inheritanceInfo, in InitAndBeginCommandBuffer() argument
63 beginInfo.pInheritanceInfo = &inheritanceInfo; in InitAndBeginCommandBuffer()
457 VkCommandBufferInheritanceInfo inheritanceInfo = {}; in beginOutsideRenderPassRecording() local
458 inheritanceInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO; in beginOutsideRenderPassRecording()
459 inheritanceInfo.renderPass = VK_NULL_HANDLE; in beginOutsideRenderPassRecording()
460 inheritanceInfo.subpass = 0; in beginOutsideRenderPassRecording()
461 inheritanceInfo.framebuffer = VK_NULL_HANDLE; in beginOutsideRenderPassRecording()
462 inheritanceInfo.occlusionQueryEnable = in beginOutsideRenderPassRecording()
464 inheritanceInfo.queryFlags = 0; in beginOutsideRenderPassRecording()
[all …]
/external/skqp/src/gpu/vk/
DGrVkCommandBuffer.cpp871 VkCommandBufferInheritanceInfo inheritanceInfo; in begin() local
872 memset(&inheritanceInfo, 0, sizeof(VkCommandBufferInheritanceInfo)); in begin()
873 inheritanceInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO; in begin()
874 inheritanceInfo.pNext = nullptr; in begin()
875 inheritanceInfo.renderPass = fActiveRenderPass->vkRenderPass(); in begin()
876 inheritanceInfo.subpass = 0; // Currently only using 1 subpass for each render pass in begin()
877 inheritanceInfo.framebuffer = framebuffer ? framebuffer->framebuffer() : VK_NULL_HANDLE; in begin()
878 inheritanceInfo.occlusionQueryEnable = false; in begin()
879 inheritanceInfo.queryFlags = 0; in begin()
880 inheritanceInfo.pipelineStatistics = 0; in begin()
[all …]
/external/skia/src/gpu/vk/
DGrVkCommandBuffer.cpp947 VkCommandBufferInheritanceInfo inheritanceInfo; in begin() local
948 memset(&inheritanceInfo, 0, sizeof(VkCommandBufferInheritanceInfo)); in begin()
949 inheritanceInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO; in begin()
950 inheritanceInfo.pNext = nullptr; in begin()
951 inheritanceInfo.renderPass = fActiveRenderPass->vkRenderPass(); in begin()
952 inheritanceInfo.subpass = 0; // Currently only using 1 subpass for each render pass in begin()
953 inheritanceInfo.framebuffer = framebuffer ? framebuffer->framebuffer() : VK_NULL_HANDLE; in begin()
954 inheritanceInfo.occlusionQueryEnable = false; in begin()
955 inheritanceInfo.queryFlags = 0; in begin()
956 inheritanceInfo.pipelineStatistics = 0; in begin()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationSmokeTests.cpp688 VkCommandBufferInheritanceInfo inheritanceInfo; in generateWork() local
908 deMemset(&inheritanceInfo, 0xcd, sizeof(inheritanceInfo)); in generateWork()
909 inheritanceInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO; in generateWork()
910 inheritanceInfo.pNext = DE_NULL; in generateWork()
911 inheritanceInfo.renderPass = testContext.renderPass.get(); in generateWork()
912 inheritanceInfo.subpass = 0; in generateWork()
913 inheritanceInfo.framebuffer = *testContext.framebuffer; in generateWork()
914 inheritanceInfo.occlusionQueryEnable = VK_FALSE; in generateWork()
915 inheritanceInfo.queryFlags = 0u; in generateWork()
916 inheritanceInfo.pipelineStatistics = 0u; in generateWork()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/conditional_rendering/
DvktConditionalClearAttachmentTests.cpp106 const vk::VkCommandBufferInheritanceInfo inheritanceInfo = in iterate() local
123 &inheritanceInfo in iterate()
DvktConditionalDispatchTests.cpp259 const vk::VkCommandBufferInheritanceInfo inheritanceInfo = in iterate() local
276 &inheritanceInfo in iterate()
DvktConditionalDrawTests.cpp348 const vk::VkCommandBufferInheritanceInfo inheritanceInfo = in iterate() local
365 &inheritanceInfo in iterate()
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
DvktDynamicStateInheritanceTests.cpp601 VkCommandBufferInheritanceInfo inheritanceInfo { in startRenderCmds() local
613 &inheritanceInfo }; in startRenderCmds()
660 inheritanceInfo.pNext = &inheritViewportInfo; in startRenderCmds()
662 inheritanceInfo.pNext = NULL; in startRenderCmds()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiCommandBuffersTests.cpp2214 VkCommandBufferInheritanceInfo inheritanceInfo; in badInheritanceInfoTest() local
2242 auto itr = reinterpret_cast<deUint8*>(&inheritanceInfo); in badInheritanceInfoTest()
2245 for (size_t i = 0; i < sizeof(inheritanceInfo); ++i) in badInheritanceInfoTest()
2248 beginInfo.pInheritanceInfo = &inheritanceInfo; in badInheritanceInfoTest()
4619 const VkCommandBufferInheritanceInfo inheritanceInfo = in iterate() local
4637 &inheritanceInfo, // const VkCommandBufferInheritanceInfo* pInheritanceInfo; in iterate()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineTimestampTests.cpp2845 const VkCommandBufferInheritanceInfo inheritanceInfo = in configCommandBuffer() local
2862 &inheritanceInfo // const VkCommandBufferInheritanceInfo* pInheritanceInfo; in configCommandBuffer()
DvktPipelineMultisampleSampleLocationsExtTests.cpp1072 const VkCommandBufferInheritanceInfo inheritanceInfo = in beginSecondaryCommandBuffer() local
1089 &inheritanceInfo, // const VkCommandBufferInheritanceInfo* pInheritanceInfo; in beginSecondaryCommandBuffer()
/external/vulkan-validation-layers/layers/
Dcore_validation_types.h1411 VkCommandBufferInheritanceInfo inheritanceInfo;
Dcore_validation.cpp2152 memset(&pCB->inheritanceInfo, 0, sizeof(VkCommandBufferInheritanceInfo)); in ResetCommandBufferState()
6409 cb_state->inheritanceInfo = *(cb_state->beginInfo.pInheritanceInfo); in PreCallRecordBeginCommandBuffer()
6410 cb_state->beginInfo.pInheritanceInfo = &cb_state->inheritanceInfo; in PreCallRecordBeginCommandBuffer()