AliasSeq of shaders
GLResult!void with GLError:
// Initialize program and shaders Program program = ... Shader vertex_shader = ... Shader frag_shader = ... // Call [gl_attach_shader] per shader and throw on error program.attach(vertex_shader, frag_shader).throw_on_error;
attach shaders to Program