diff options
author | quou <quou@disroot.org> | 2025-03-14 21:23:41 +1100 |
---|---|---|
committer | quou <quou@disroot.org> | 2025-03-14 21:23:41 +1100 |
commit | 750b192a0229ecf401fbe4dd727725a6ef5350d9 (patch) | |
tree | 7b08bc8d891ea1b6c6c097d4f55b089adbd58ca6 /video.hpp | |
parent | dae6866161ca59a6b23b41ae7008411116127f76 (diff) |
implementing shader variants
Diffstat (limited to 'video.hpp')
-rw-r--r-- | video.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -134,12 +134,18 @@ struct Pipeline { Vertex_Format_Id vertex_format; Shader_Id shader; int samples; + int shader_masks[shader_type_count]; Descriptor descriptors[pipeline_max_descriptors]; int descriptor_count; void hash(); bool pipeline_eq(const Pipeline& other) const { + int i; + for (i = 0; i < shader_type_count; i++) { + if (other.shader_masks[i] != shader_masks[i]) + return false; + } return shader == other.shader && vertex_format == other.vertex_format && @@ -333,6 +339,7 @@ struct Pipeline_Builder { ); PB& cull(Cull_Mode mode); PB& shader(Shader_Id s); + PB& option(Shader_Type type, int mask); PB& vertex_format(Vertex_Format_Id vf); PB& texture(int binding, Texture_Id t, Sampler_Id s); PB& cbuffer( @@ -588,6 +595,7 @@ struct Shader : public Asset { int attribute_index(const char* name); int target_index(const char* name); int descriptor_binding(const char* name); + int opt_mask(Shader_Type type, const char* name); int descriptor_stage(int slot); }; |