summaryrefslogtreecommitdiff
path: root/src/renderer/cleanroom/ral.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/renderer/cleanroom/ral.h')
-rw-r--r--src/renderer/cleanroom/ral.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/renderer/cleanroom/ral.h b/src/renderer/cleanroom/ral.h
index a1e9929..15eb027 100644
--- a/src/renderer/cleanroom/ral.h
+++ b/src/renderer/cleanroom/ral.h
@@ -5,9 +5,9 @@
* @details API that a graphics backend *must* implement
* @version 0.1
* @date 2024-03-31
- *
+ *
* @copyright Copyright (c) 2024
- *
+ *
*/
#pragma once
@@ -19,8 +19,8 @@ typedef struct gpu_swapchain gpu_swapchain;
typedef struct gpu_device gpu_device;
typedef struct gpu_pipeline gpu_pipeline;
typedef struct gpu_renderpass gpu_renderpass;
-typedef struct gpu_cmd_encoder gpu_cmd_encoder; // Recording
-typedef struct gpu_cmd_buffer gpu_cmd_buffer; // Ready for submission
+typedef struct gpu_cmd_encoder gpu_cmd_encoder; // Recording
+typedef struct gpu_cmd_buffer gpu_cmd_buffer; // Ready for submission
enum pipeline_kind {
GRAPHICS,
@@ -29,8 +29,8 @@ enum pipeline_kind {
typedef struct shader_desc {
const char* debug_name;
- str8 filepath; // where it came from
- str8 glsl; // contents
+ str8 filepath; // where it came from
+ str8 glsl; // contents
} shader_desc;
struct pipeline_desc {