mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 21:17:27 +01:00
14 lines
284 B
Go
14 lines
284 B
Go
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package gl
|
||
|
|
||
|
import (
|
||
|
"github.com/ebiten/purego"
|
||
|
)
|
||
|
|
||
|
var opengl = purego.Dlopen("/System/Library/Frameworks/OpenGL.framework/Versions/Current/OpenGL", purego.RTLD_GLOBAL)
|
||
|
|
||
|
func getProcAddress(name string) uintptr {
|
||
|
return purego.Dlsym(opengl, name)
|
||
|
}
|