diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-27 16:35:11 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-27 16:35:11 +1000 |
commit | fc35df8e999521b8be7c44800f4ff4665df3254a (patch) | |
tree | 2acc67b9830e712bef78270c6478c61e184f2047 /src/renderer/cleanroom/ral.h | |
parent | 55bb30899899d1e6f34e85d87909d5108d085adb (diff) |
heightmap function signatures
Diffstat (limited to 'src/renderer/cleanroom/ral.h')
-rw-r--r-- | src/renderer/cleanroom/ral.h | 12 |
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 { |