write the validation layers for ext_sync

This commit is contained in:
Gregory Wells
2025-07-09 19:41:21 -04:00
parent 0fe87e1e84
commit 414717d211
3 changed files with 39 additions and 23 deletions

View File

@@ -0,0 +1,9 @@
#include <loader/src/gryphn_loader.h>
gnReturnCode checkPresentationQueueGetImageAsync(gnPresentationQueueHandle presentationQueue, uint64_t timeout, gnSemaphoreHandle semaphore, uint32_t* imageIndex);
gnReturnCode checkCreateSemaphore(gnSemaphoreHandle semaphore, gnOutputDeviceHandle device);
void checkDestroySemaphore(gnSemaphoreHandle semaphore);
gnReturnCode checkCreateFence(gnFenceHandle fence, gnOutputDeviceHandle device);
void checkWaitForFence(gnFenceHandle fence, uint64_t timeout);
void checkResetFence(gnFenceHandle fence);
void checkDestroyFence(gnFenceHandle fence);