get vulkan queues

This commit is contained in:
Greg Wells
2025-07-16 19:31:46 -04:00
parent cafe294a17
commit ebc9a92f37
5 changed files with 18 additions and 1 deletions

View File

@@ -8,6 +8,10 @@ typedef uint32_t gnFlags;
typedef struct type##_t* type##Handle; \
typedef struct type##_t* type
#define GN_IMPLEMENTATION_HANDLE(type) \
typedef uint64_t type##Handle; \
typedef uint64_t type
#define GN_HANDLE_ALIAS(handle, alias) \
typedef struct handle##_t* alias##Handle; \
typedef struct handle##_t* alias
@@ -36,4 +40,4 @@ GN_HANDLE(gnUniform);
GN_HANDLE(gnSemaphore);
GN_HANDLE(gnFence);
// GN_EXT_QUEUES
GN_HANDLE(gnQueue); // NOTE: this is an implementaion specific object
GN_IMPLEMENTATION_HANDLE(gnQueue); // NOTE: this is an implementaion specific object