write the functions for the command pool/buffers

This commit is contained in:
Gregory Wells
2025-08-12 23:09:39 -04:00
parent f251613d77
commit d48332fdcd
7 changed files with 39 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
#include "opengl_loader.h"
#include "commands/buffers/opengl_command_buffer.h"
gnCommandFunctions loadOpenGLCommandFunctions() {
return (gnCommandFunctions) {
._gnCommandPoolAllocateCommandBuffers = openglCommandPoolAllocateCommandBuffers
};
}