summaryrefslogtreecommitdiff
path: root/src/ral/ral_common.h
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-19 14:33:34 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-19 14:33:34 +1000
commit82515f9d90ac149984013f0d64c1cab37b349b29 (patch)
tree6da445874d055e3e66ab1825d4aa3bb784955fc9 /src/ral/ral_common.h
parent5359c011a08ef2e06ed54104cc16c32868ca88ff (diff)
chore clang format + tidy
Diffstat (limited to 'src/ral/ral_common.h')
-rw-r--r--src/ral/ral_common.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ral/ral_common.h b/src/ral/ral_common.h
index 98f54ed..63816b1 100644
--- a/src/ral/ral_common.h
+++ b/src/ral/ral_common.h
@@ -1,9 +1,9 @@
/**
* @brief Common functions that don't actually depend on the specific backend
-*/
+ */
#pragma once
-#include "defines.h"
#include "buf.h"
+#include "defines.h"
#include "mem.h"
#include "ral_types.h"
// #include "ral_impl.h"
@@ -13,7 +13,6 @@
#include "backend_opengl.h"
#endif
-
TYPED_POOL(GPU_Buffer, Buffer);
TYPED_POOL(GPU_Texture, Texture);
TYPED_POOL(GPU_PipelineLayout, PipelineLayout);
@@ -39,7 +38,8 @@ struct ResourcePools {
typedef struct ResourcePools ResourcePools;
void ResourcePools_Init(arena* a, struct ResourcePools* res_pools);
-PUB GPU_Renderpass* GPU_GetDefaultRenderpass(); // returns a renderpass that draws directly to default framebuffer with default depth
+PUB GPU_Renderpass* GPU_GetDefaultRenderpass(); // returns a renderpass that draws directly to
+ // default framebuffer with default depth
// --- Vertex formats
VertexDescription static_3d_vertex_description();