Lines Matching defs:fences

620 	VkFence						fences[2];
655 createFences(vkd, device, false, DE_LENGTH_OF_ARRAY(fences), fences);
660 destroyFences(vkd, device, DE_LENGTH_OF_ARRAY(fences), fences);
1072 fenceStatus = deviceInterface.getFenceStatus(device, testContext.fences[0]);
1078 fenceStatus = deviceInterface.getFenceStatus(device, testContext.fences[1]);
1086 VK_CHECK(deviceInterface.queueSubmit(queue, 1, &submitInfo, testContext.fences[0]));
1089 waitStatus = deviceInterface.waitForFences(device, 1, &testContext.fences[0], true, 0u);
1098 waitStatus = deviceInterface.waitForFences(device, 1, &testContext.fences[0], true, DEFAULT_TIMEOUT);
1106 // Wait for work on fences[0] to actually complete
1107 waitStatus = deviceInterface.waitForFences(device, 1, &testContext.fences[0], true, std::numeric_limits<deUint64>::max());
1115 waitStatus = deviceInterface.waitForFences(device, 1, &testContext.fences[1], true, 1);
1123 fenceStatus = deviceInterface.getFenceStatus(device, testContext.fences[0]);
1142 return TestStatus::pass("synchronization-fences passed");
1224 VK_CHECK(synchronizationWrapper->queueSubmit(queue[0], testContext1.fences[0]));
1227 testStatus = deviceDriver.waitForFences(device.get(), 1, &testContext1.fences[0], true, std::numeric_limits<deUint64>::max());
1262 VK_CHECK(synchronizationWrapper->queueSubmit(queue[1], testContext2.fences[0]));
1265 testStatus = deviceDriver.waitForFences(device.get(), 1, &testContext2.fences[0], true, std::numeric_limits<deUint64>::max());
1302 addFunctionCaseWithPrograms(smokeTests.get(), "fences", buildShaders, testFences);