diff options
author | omnisci3nce <omniscient.oce@gmail.com> | 2024-07-19 16:38:56 +1000 |
---|---|---|
committer | omnisci3nce <omniscient.oce@gmail.com> | 2024-07-19 16:41:04 +1000 |
commit | ff825f1e18860d5aa0c761496f1dc0670422715c (patch) | |
tree | bc88851579492007237b125b68811cef947397c0 /src/ral | |
parent | efb2d293d5e849fc96e4e386d55a7611795561aa (diff) |
fly camera
Diffstat (limited to 'src/ral')
-rw-r--r-- | src/ral/backends/opengl/backend_opengl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ral/backends/opengl/backend_opengl.c b/src/ral/backends/opengl/backend_opengl.c index 4316e75..10a21d1 100644 --- a/src/ral/backends/opengl/backend_opengl.c +++ b/src/ral/backends/opengl/backend_opengl.c @@ -52,7 +52,8 @@ bool GPU_Backend_Init(const char* window_name, struct GLFWwindow* window, } // All of these are no-ops in OpenGL -void GPU_Backend_Shutdown() {} +void GPU_Backend_Shutdown() { /* TODO */ +} bool GPU_Device_Create(GPU_Device* out_device) { return true; } void GPU_Device_Destroy(GPU_Device* device) {} bool GPU_Swapchain_Create(GPU_Swapchain* out_swapchain) { return true; } |