Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
glow/glow.h
✓ #include <glow/glow.h>
Basic OpenGL shader program setup using glow.
#include <glow/glow.h>
int main() {
glow::Program program;
program.attach(glow::Shader::fromFile(GL_VERTEX_SHADER, "vertex.glsl"));
program.attach(glow::Shader::fromFile(GL_FRAGMENT_SHADER, "fragment.glsl"));
program.link();
return 0;
}
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.