#pragma once #include "GL/glew.h" namespace zgl { struct shader_program_variable { struct info_type { GLenum type; GLint location; } info; const char* name; }; }