#pragma once #include #include "gl_util.h" #include typedef struct Shader { GLuint id; } Shader; /// Compile a new shader. bool gfx_compile_shader(Shader*, const ShaderDesc*); /// Destroy the shader. void gfx_del_shader(Shader*);