redo some stuffs

This commit is contained in:
Greg Wells
2025-07-16 19:23:55 -04:00
parent 7e724da698
commit cafe294a17
7 changed files with 12 additions and 31 deletions

View File

@@ -30,3 +30,10 @@ GN_HANDLE(gnFramebuffer);
GN_HANDLE(gnBuffer);
GN_HANDLE(gnUniformPool);
GN_HANDLE(gnUniform);
// extension objects
// GN_EXT_SYNCHRONIZATION
GN_HANDLE(gnSemaphore);
GN_HANDLE(gnFence);
// GN_EXT_QUEUES
GN_HANDLE(gnQueue); // NOTE: this is an implementaion specific object

View File

@@ -6,6 +6,5 @@
typedef struct gnSubmitInfo {
uint32_t commandBufferCount;
gnCommandBufferHandle* commandBuffers;
// uint32_t queueIndex;
} gnSubmitInfo;
gnReturnCode gnSubmit(gnOutputDevice device, gnSubmitInfo info);