diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-08-11 00:13:18 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-08-11 00:13:18 +1000 |
commit | 87a47aead498d4f7c360d64efc632bcf1a533751 (patch) | |
tree | 7b39d6abcd6d39d76ecaacc0352ad685783a00c7 /src/ral/backends | |
parent | 7bd1560cf2b49018a842fb42cda2c17b347957aa (diff) |
chore: fmt and lint
Diffstat (limited to 'src/ral/backends')
-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 6c1a301..7862a81 100644 --- a/src/ral/backends/opengl/backend_opengl.c +++ b/src/ral/backends/opengl/backend_opengl.c @@ -57,7 +57,8 @@ bool GPU_Backend_Init(const char* window_name, struct GLFWwindow* window, } // All of these are no-ops in OpenGL -void GPU_Backend_Shutdown() { /* TODO */ } +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; } |