1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#pragma once void init_shader_sys(void); int load_new_shader(const char* path); void set_active_shader(int idx); void update_shaders(void); void reset_active_shader(void); void unload_shader(int idx); void unload_active_shaders(void);