mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-14 15:07:26 +01:00
72f026e254
On a Debian machine, LD_LIBRARY_PATH might not be set and libGL.so might not exist (libGL.so.1 exists instead). In this case, searching for a GL library fails This change fixes the issue by not using LD_LIBRARY_PATH and also including `libGL.so.*` files as candidates for dlopen. Closes #2539 |
||
---|---|---|
.. | ||
const.go | ||
default_cgo.go | ||
default_js.go | ||
default_purego.go | ||
gomobile.go | ||
interface.go | ||
LICENSE | ||
procaddr_darwin.go | ||
procaddr_nintendosdk.go | ||
procaddr_others.go | ||
procaddr_windows.go | ||
README.md |
This is a fork of github.com/go-gl/gl/v2.1/gl
with the below patch. This is now modified manually.
The original version is generated from github.com/hajimehoshi/glow
's nocgo
branch. This enables to remove dependencies on Cgo on Windows.
Now we are working on committing this 'no-cgo' change to the official gl package. See https://github.com/go-gl/glow/pull/102.