Lines Matching refs:protectedCommandBuffer

7240     VkCommandBufferObj protectedCommandBuffer(m_device, &protectedCommandPool);  in TEST_F()  local
7478 protectedCommandBuffer.begin(); in TEST_F()
7481 …vk::CmdBlitImage(protectedCommandBuffer.handle(), image_protected.handle(), VK_IMAGE_LAYOUT_GENERA… in TEST_F()
7486 …vk::CmdClearColorImage(protectedCommandBuffer.handle(), image_unprotected.handle(), VK_IMAGE_LAYOU… in TEST_F()
7491 …vk::CmdCopyBuffer(protectedCommandBuffer.handle(), buffer_protected, buffer_unprotected, 1, &buffe… in TEST_F()
7495 …vk::CmdCopyBufferToImage(protectedCommandBuffer.handle(), buffer_protected, image_unprotected.hand… in TEST_F()
7500 …vk::CmdCopyImage(protectedCommandBuffer.handle(), image_protected.handle(), VK_IMAGE_LAYOUT_GENERA… in TEST_F()
7505 …vk::CmdCopyImageToBuffer(protectedCommandBuffer.handle(), image_protected.handle(), VK_IMAGE_LAYOU… in TEST_F()
7510 vk::CmdFillBuffer(protectedCommandBuffer.handle(), buffer_unprotected, 0, 4, 0); in TEST_F()
7514 …vk::CmdUpdateBuffer(protectedCommandBuffer.handle(), buffer_unprotected, 0, 4, (void *)update_data… in TEST_F()
7517 …vk::CmdBeginRenderPass(protectedCommandBuffer.handle(), &render_pass_begin, VK_SUBPASS_CONTENTS_IN… in TEST_F()
7520 vk::CmdClearAttachments(protectedCommandBuffer.handle(), 2, clear_attachments, 2, clear_rect); in TEST_F()
7523 vk::CmdEndRenderPass(protectedCommandBuffer.handle()); in TEST_F()
7524 protectedCommandBuffer.end(); in TEST_F()
7527 … VkCommandBuffer comman_buffers[2] = {m_commandBuffer->handle(), protectedCommandBuffer.handle()}; in TEST_F()