giving up on this extension for now

This commit is contained in:
Greg Wells
2025-07-16 13:16:18 -04:00
parent 3474ce4288
commit b84786715d
10 changed files with 41 additions and 7 deletions

View File

@@ -3,13 +3,13 @@
#include <utils/gryphn_error_code.h>
#include "gryphn_handles.h"
typedef enum gnCommandPoolFlags {
GN_NO_FLAGS = 0,
GN_REUSE_COMMAND_BUFFERS = 1
} gnCommandPoolFlags;
typedef enum gnCommandPoolFlagBits {
GN_NO_FLAGS = 0,
GN_REUSE_COMMAND_BUFFERS = 1 << 0
} gnCommandPoolFlagBits;
typedef gnFlags gnCommandPoolFlags;
typedef struct gnCommandPoolInfo {
// uint32_t queueIndex;
gnCommandPoolFlags flags;
} gnCommandPoolInfo;

View File

@@ -26,8 +26,6 @@ GN_HANDLE(gnShaderModule);
GN_HANDLE(gnGraphicsPipeline);
GN_HANDLE(gnCommandPool);
GN_HANDLE(gnCommandBuffer);
GN_HANDLE(gnSemaphore);
GN_HANDLE(gnFence);
GN_HANDLE(gnFramebuffer);
GN_HANDLE(gnBuffer);
GN_HANDLE(gnUniformPool);