#pragma once #include "features/generic_features.hpp" namespace zgl::shading { struct shader_source_set { struct compiled_shader_features_set { features::generic::type static_enabled; features::generic::type dynamic_enable; }; std::array compiled_features{}; std::array string_counts{}; }; }