diff options
Diffstat (limited to 'src/ral/ral_common.h')
-rw-r--r-- | src/ral/ral_common.h | 8 |
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(); |