gl

module
v0.0.0-...-6d2b8bc Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 23, 2015 License: MIT

README

GL

This repository holds Go bindings to various OpenGL versions. They are auto-generated using Glow.

Features:

  • Go functions that mirror the C specification using Go types.
  • Support for multiple OpenGL APIs (GL/GLES/EGL/WGL/GLX/EGL), versions, and profiles.
  • Support for extensions (including debug callbacks).

Usage

Use go get to download and install one of the prebuilt packages. The prebuilt packages support OpenGL versions 3.2, 3.3, 4.1, 4.4 and 4.5 across both the core and compatibility profiles and include all extensions.

go get github.com/go-gl/gl/v{3.2,3.3,4.1,4.4,4.5}-{core,compatibility}/gl
go get github.com/go-gl/gl/v3.3-core/gl

Once the bindings are installed you can use them with the appropriate import statements.

import "github.com/go-gl/gl/v3.3-core/gl"

func main() {
	if err := gl.Init(); err != nil {
		panic(err)
	}
}

The gl package contains the OpenGL functions and enumeration values for the imported version. It also contains helper functions for working with the API. Of note is gl.Ptr which takes a Go array or slice or pointer and returns a corresponding uintptr to use with functions expecting data pointers. Also of note is gl.Str which takes a null-terminated Go string and returns a corresponding *int8 to use with functions expecting character pointers.

A note about threading and goroutines. The bindings do not expose a mechanism to make an OpenGL context current on a different thread so you must restrict your usage to the thread on which you called gl.Init(). To do so you should use LockOSThread.

Examples

Examples illustrating how to use the bindings are available in the examples repo. There are examples for OpenGL 4.1 core and OpenGL 2.1.

Function Loading

The procaddr package contains platform-specific functions for loading OpenGL functions. Calling gl.Init() uses the auto subpackage to automatically select an appropriate implementation based on the build environment. If you want to select a specific implementation you can use the noauto build tag and the gl.InitWithProcAddrFunc initialization function.

Generating

These gl bindings are generated using the Glow generator. Only developers of this repository need to do this step.

It is required to have glow source in the same Go workspace (since relative paths are used) and the glow binary should be in your $PATH. Doable with go get -u github.com/go-gl/glow if your $GOPATH/bin is in your $PATH.

go generate -tags=gen github.com/go-gl/gl

More information about these bindings can be found in the Glow repository.

Directories

Path Synopsis
all-core
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.
v2.1
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.
v3.2-compatibility
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.
v3.2-core
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.
v3.3-compatibility
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.
v3.3-core
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.
v4.1-compatibility
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.
v4.1-core
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.
v4.4-compatibility
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.
v4.4-core
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.
v4.5-compatibility
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.
v4.5-core
gl
Package gl implements Go bindings to OpenGL.
Package gl implements Go bindings to OpenGL.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL