Lines Matching refs:event
467 const Unique<VkEvent> event (createEvent(vk, device));
471 vk.cmdSetEvent(commandBuffer, *event, stageMask);
480 const VkResult result = vk.getEventStatus(device, *event);
725 // create event that will be used to check if secondary command buffer has been executed
726 const Unique<VkEvent> event (createEvent(vk, vkDevice));
728 // reset event
729 VK_CHECK(vk.resetEvent(vkDevice, *event));
734 // allow execution of event during every stage of pipeline
737 // record setting event
738 vk.cmdSetEvent(*primCmdBuf, *event,stageMask);
745 VkResult result = vk.getEventStatus(vkDevice,*event);
810 testResult = tcu::TestStatus::fail("An event was not set.");
853 const Unique<VkEvent> event (createEvent(vk, vkDevice));
858 // Set the event
859 vk.cmdSetEvent(*cmdBuf, *event, VK_PIPELINE_STAGE_ALL_COMMANDS_BIT);
866 if (vk.getEventStatus(vkDevice, *event) != VK_EVENT_SET)
867 return tcu::TestStatus::fail("Failed to set the event.");
869 // Reset the event
870 vk.resetEvent(vkDevice, *event);
871 if(vk.getEventStatus(vkDevice, *event) != VK_EVENT_RESET)
872 return tcu::TestStatus::fail("Failed to reset the event.");
880 // recorded, so the event should remain unsignaled.
883 // Check if the event remained unset.
884 if(vk.getEventStatus(vkDevice, *event) == VK_EVENT_RESET)
1114 // create event that will be used to check if secondary command buffer has been executed
1115 const Unique<VkEvent> event (createEvent(vk, vkDevice));
1120 // record setting event
1121 vk.cmdSetEvent(*primCmdBuf, *event, VK_PIPELINE_STAGE_ALL_COMMANDS_BIT);
1155 // create event that will be used to check if secondary command buffer has been executed
1156 const Unique<VkEvent> event (createEvent(vk, vkDevice));
1158 // reset event
1159 VK_CHECK(vk.resetEvent(vkDevice, *event));
1164 // allow execution of event during every stage of pipeline
1176 // record setting event
1177 vk.cmdSetEvent(*primCmdBuf, *event,stageMask);
1179 // record resetting event
1180 vk.cmdResetEvent(*primCmdBuf, *event,stageMask);
1236 // create event that will be used to check if secondary command buffer has been executed
1237 const Unique<VkEvent> event (createEvent(vk, vkDevice));
1242 // record setting event
1243 vk.cmdSetEvent(*secCmdBuf, *event, VK_PIPELINE_STAGE_ALL_COMMANDS_BIT);
1306 // create event that will be used to check if secondary command buffer has been executed
1307 const Unique<VkEvent> event (createEvent(vk, vkDevice));
1309 // reset event
1310 VK_CHECK(vk.resetEvent(vkDevice, *event));
1318 // allow execution of event during every stage of pipeline
1330 // record setting event
1331 vk.cmdSetEvent(*secCmdBuf, *event,stageMask);
1333 // record resetting event
1334 vk.cmdResetEvent(*secCmdBuf, *event,stageMask);
1378 // create event that will be used to check if secondary command buffer has been executed
1379 const Unique<VkEvent> event (createEvent(vk, vkDevice));
1381 // reset event
1382 VK_CHECK(vk.resetEvent(vkDevice, *event));
1387 // allow execution of event during every stage of pipeline
1390 // record setting event
1391 vk.cmdSetEvent(*primCmdBuf, *event,stageMask);
1398 VkResult result = vk.getEventStatus(vkDevice,*event);
1402 // reset event
1403 VK_CHECK(vk.resetEvent(vkDevice, *event));
1408 result = vk.getEventStatus(vkDevice,*event);
1481 // create event that will be used to check if secondary command buffer has been executed
1482 const Unique<VkEvent> event (createEvent(vk, vkDevice));
1484 // reset event
1485 VK_CHECK(vk.resetEvent(vkDevice, *event));
1493 // allow execution of event during every stage of pipeline
1496 // record setting event
1497 vk.cmdSetEvent(*secCmdBuf, *event,stageMask);
1511 VkResult result = vk.getEventStatus(vkDevice,*event);
1518 // reset event to allow receiving it again
1519 VK_CHECK(vk.resetEvent(vkDevice, *event));
1533 result = vk.getEventStatus(vkDevice,*event);
1572 // create event that will be used to check if secondary command buffer has been executed
1573 const Unique<VkEvent> event (createEvent(vk, vkDevice));
1575 // reset event
1576 VK_CHECK(vk.resetEvent(vkDevice, *event));
1581 // allow execution of event during every stage of pipeline
1584 // record setting event
1585 vk.cmdSetEvent(*primCmdBuf, *event,stageMask);
1592 VkResult result = vk.getEventStatus(vkDevice,*event);
1599 // allow execution of event during every stage of pipeline
1602 // record setting event
1603 vk.cmdSetEvent(*primCmdBuf, *event,stageMask);
1610 result = vk.getEventStatus(vkDevice,*event);
1683 // create event that will be used to check if secondary command buffer has been executed
1684 const Unique<VkEvent> event (createEvent(vk, vkDevice));
1686 // reset event
1687 VK_CHECK(vk.resetEvent(vkDevice, *event));
1695 // allow execution of event during every stage of pipeline
1698 // record setting event
1699 vk.cmdSetEvent(*secCmdBuf, *event,stageMask);
1713 VkResult result = vk.getEventStatus(vkDevice,*event);
1720 // reset event to allow receiving it again
1721 VK_CHECK(vk.resetEvent(vkDevice, *event));
1726 // allow execution of event during every stage of pipeline
1729 // record setting event
1730 vk.cmdSetEvent(*secCmdBuf, *event,stageMask);
1747 result = vk.getEventStatus(vkDevice,*event);
2699 testResult = tcu::TestStatus::fail("Failed to set the event.");
2796 // a chance to be processed before we check the event's status
2813 testResult = tcu::TestStatus::fail("The first event was signaled.");
2869 // allow execution of event during every stage of pipeline
2872 // record setting event
2880 // allow execution of event during every stage of pipeline
2883 // record setting event
2995 // create event that will be used to check if command buffers has been executed
2996 const Unique<VkEvent> event (createEvent(vk, vkDevice));
2998 // reset event - at creation state is undefined
2999 VK_CHECK(vk.resetEvent(vkDevice, *event));
3004 // allow execution of event during every stage of pipeline
3007 // record setting event
3008 vk.cmdSetEvent(*primCmdBuf, *event,stageMask);
3047 VkResult result = vk.getEventStatus(vkDevice,*event);
3051 // reset event, so next buffers can set it again
3052 VK_CHECK(vk.resetEvent(vkDevice, *event));
3086 VkResult result = vk.getEventStatus(vkDevice,*event);
3093 // reset event, so next buffers can set it again
3094 VK_CHECK(vk.resetEvent(vkDevice, *event));
3371 // create event that will be used to check if secondary command buffer has been executed
3372 const Unique<VkEvent> event (createEvent(vk, vkDevice));
3374 // reset event
3375 VK_CHECK(vk.resetEvent(vkDevice, *event));
3380 // allow execution of event during every stage of pipeline
3382 // record setting event
3383 vk.cmdSetEvent(*secCmdBuf, *event, stageMask);
3399 VkResult result = vk.getEventStatus(vkDevice, *event);
3474 // create event that will be used to check if secondary command buffer has been executed
3477 // reset event
3487 // set event
3905 // create event that will be used to check if command buffer has been executed