diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-17 19:20:04 +1100 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-17 19:20:04 +1100 |
commit | a5f1733a09aa99379cf48ed326b4660fbc17cb25 (patch) | |
tree | 4db7ecdc528a40302dc06151cda59144cb71a4a6 /include | |
parent | c557763010a8976680f37609ca10e666ff849cd9 (diff) |
clean up enum name
Diffstat (limited to 'include')
-rw-r--r-- | include/celeritas.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/celeritas.h b/include/celeritas.h index d4dab98..14e39dd 100644 --- a/include/celeritas.h +++ b/include/celeritas.h @@ -319,16 +319,16 @@ typedef enum shader_binding_type { BINDING_COUNT } shader_binding_type; -typedef enum shader_vis { - VISIBILITY_VERTEX = 1 << 0, - VISIBILITY_FRAGMENT = 1 << 1, - VISIBILITY_COMPUTE = 1 << 2, -} shader_vis; +typedef enum shader_stage { + STAGE_VERTEX = 1 << 0, + STAGE_FRAGMENT = 1 << 1, + STAGE_COMPUTE = 1 << 2, +} shader_stage; typedef struct shader_binding { const char* label; shader_binding_type binding_type; - shader_vis vis; + shader_stage visibility; union { struct { u32 size; @@ -352,7 +352,7 @@ typedef struct shader_function { const char* source; bool is_spirv; const char* entry_point; - shader_vis shader_stage; + shader_stage stage; } shader_function; typedef enum cull_mode { CULL_BACK_FACE, CULL_FRONT_FACE } cull_mode; |