Home
last modified time | relevance | path

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

/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.cpp881 VkCommandBufferInheritanceInfo inheritanceInfo; in begin() local
882 memset(&inheritanceInfo, 0, sizeof(VkCommandBufferInheritanceInfo)); in begin()
883 inheritanceInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO; in begin()
884 inheritanceInfo.pNext = nullptr; in begin()
885 inheritanceInfo.renderPass = fActiveRenderPass->vkRenderPass(); in begin()
886 inheritanceInfo.subpass = 0; // Currently only using 1 subpass for each render pass in begin()
887 inheritanceInfo.framebuffer = framebuffer ? framebuffer->framebuffer() : VK_NULL_HANDLE; in begin()
888 inheritanceInfo.occlusionQueryEnable = false; in begin()
889 inheritanceInfo.queryFlags = 0; in begin()
890 inheritanceInfo.pipelineStatistics = 0; in begin()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationSmokeTests.cpp653 VkCommandBufferInheritanceInfo inheritanceInfo; in generateWork() local
873 deMemset(&inheritanceInfo, 0xcd, sizeof(inheritanceInfo)); in generateWork()
874 inheritanceInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO; in generateWork()
875 inheritanceInfo.pNext = DE_NULL; in generateWork()
876 inheritanceInfo.renderPass = testContext.renderPass.get(); in generateWork()
877 inheritanceInfo.subpass = 0; in generateWork()
878 inheritanceInfo.framebuffer = *testContext.framebuffer; in generateWork()
879 inheritanceInfo.occlusionQueryEnable = VK_FALSE; in generateWork()
880 inheritanceInfo.queryFlags = 0u; in generateWork()
881 inheritanceInfo.pipelineStatistics = 0u; in generateWork()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/conditional_rendering/
DvktConditionalClearAttachmentTests.cpp105 const vk::VkCommandBufferInheritanceInfo inheritanceInfo = in iterate() local
122 &inheritanceInfo in iterate()
DvktConditionalDispatchTests.cpp248 const vk::VkCommandBufferInheritanceInfo inheritanceInfo = in iterate() local
265 &inheritanceInfo in iterate()
DvktConditionalDrawTests.cpp347 const vk::VkCommandBufferInheritanceInfo inheritanceInfo = in iterate() local
364 &inheritanceInfo in iterate()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineTimestampTests.cpp1961 const VkCommandBufferInheritanceInfo inheritanceInfo = in configCommandBuffer() local
1978 &inheritanceInfo // const VkCommandBufferInheritanceInfo* pInheritanceInfo; in configCommandBuffer()
DvktPipelineMultisampleSampleLocationsExtTests.cpp1164 const VkCommandBufferInheritanceInfo inheritanceInfo = in beginSecondaryCommandBuffer() local
1181 &inheritanceInfo, // const VkCommandBufferInheritanceInfo* pInheritanceInfo; in beginSecondaryCommandBuffer()
/external/vulkan-validation-layers/layers/
Dcore_validation_types.h982 VkCommandBufferInheritanceInfo inheritanceInfo;
Dcore_validation.cpp2096 memset(&pCB->inheritanceInfo, 0, sizeof(VkCommandBufferInheritanceInfo)); in ResetCommandBufferState()
6352 cb_state->inheritanceInfo = *(cb_state->beginInfo.pInheritanceInfo); in PreCallRecordBeginCommandBuffer()
6353 cb_state->beginInfo.pInheritanceInfo = &cb_state->inheritanceInfo; in PreCallRecordBeginCommandBuffer()