From e59c4b9d14a48ef6c977860e80e9caf19c086498 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Sun, 26 Apr 2015 14:31:07 -0700 Subject: [PATCH] Update OpenGL section. The OpenGL repos have had an overhaul earlier this year. This update is to reflect the changes. Update descriptions of go-gl/gl and go-gl/glfw repos. Remove glow. It is an internal generator tool used to generate the go-gl/gl bindings; most users will not need to know about it unless they are interested in generating custom bindings or fixing issues. But in that case they can find out about glow from the go-gl/gl repository, since it's described in the README. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 5bdff7f1..46d04079 100644 --- a/README.md +++ b/README.md @@ -451,9 +451,8 @@ Join us on IRC at **#awesome-go** on freenode [web access](http://webchat.freeno *Libraries for using OpenGL in Go.* -* [gl](https://github.com/go-gl/gl) - Go bindings for OpenGL. Requires an external dependency GLEW. +* [gl](https://github.com/go-gl/gl) - Go bindings for OpenGL (generated via glow). * [glfw](https://github.com/go-gl/glfw) - Go bindings for GLFW 3. -* [glow](https://github.com/go-gl/glow) - Go binding generator and bindings for OpenGL. * [mathgl](https://github.com/go-gl/mathgl) - Pure Go math package specialized for 3D math, with inspiration from GLM.