diff options
Diffstat (limited to 'src/renderer/ral.h')
-rw-r--r-- | src/renderer/ral.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/renderer/ral.h b/src/renderer/ral.h index a18ea87..3415b04 100644 --- a/src/renderer/ral.h +++ b/src/renderer/ral.h @@ -66,9 +66,10 @@ typedef enum pipeline_kind { typedef struct shader_desc { const char* debug_name; - str8 filepath; // where it came from + str8 filepath; // Where it came from str8 code; // Either GLSL or SPIRV bytecode bool is_spirv; + bool is_combined_vert_frag; // Contains both vertex and fragment stages } shader_desc; struct graphics_pipeline_desc { |