Files
Gryphn/projects/apis/opengl/loader/opengl_commands_loader.c
2025-08-12 23:09:39 -04:00

9 lines
261 B
C

#include "opengl_loader.h"
#include "commands/buffers/opengl_command_buffer.h"
gnCommandFunctions loadOpenGLCommandFunctions() {
return (gnCommandFunctions) {
._gnCommandPoolAllocateCommandBuffers = openglCommandPoolAllocateCommandBuffers
};
}