An open API service indexing awesome lists of open source software.

https://github.com/devodev/opengl-experiment

A playground for learning OpenGL basics using Go.
https://github.com/devodev/opengl-experiment

Last synced: 5 months ago
JSON representation

A playground for learning OpenGL basics using Go.

Awesome Lists containing this project

README

          

# opengl-experiment

![Current Project State](docs/images/currentProjectState2.gif?raw=true "Current Project State")

## Setup

Install a cgo compiler(Windows):

Install GLFW Depencies:

Install OpenGL and GLFW cgo binding libraries

```bash
go get -u github.com/go-gl/gl/v4.6-core/gl
go get -u github.com/go-gl/glfw/v3.3/glfw
```

## Example

Run the example project

```bash
git clone https://github.com/devodev/opengl-experiment.git
cd opengl-experiment/examples/textured_quad
go run .
```