mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
4de807cc44
Signed-off-by: Pierre Curto <pierre.curto@gmail.com>
116 lines
2.9 KiB
Go
116 lines
2.9 KiB
Go
// Copyright 2022 The Ebitengine Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//go:build !darwin && !js && !nintendosdk && !windows
|
|
|
|
package gl
|
|
|
|
// #cgo LDFLAGS: -ldl
|
|
//
|
|
// #include <dlfcn.h>
|
|
// #include <stdlib.h>
|
|
//
|
|
// static void* getProcAddressGL(void* libGL, const char* name) {
|
|
// static void*(*glXGetProcAddress)(const char*);
|
|
// if (!glXGetProcAddress) {
|
|
// glXGetProcAddress = dlsym(libGL, "glXGetProcAddress");
|
|
// if (!glXGetProcAddress) {
|
|
// glXGetProcAddress = dlsym(libGL, "glXGetProcAddressARB");
|
|
// }
|
|
// }
|
|
// return glXGetProcAddress(name);
|
|
// }
|
|
//
|
|
// static void* getProcAddressGLES(void* libGLES, const char* name) {
|
|
// return dlsym(libGLES, name);
|
|
// }
|
|
import "C"
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"runtime"
|
|
"strings"
|
|
"unsafe"
|
|
)
|
|
|
|
var (
|
|
libGL unsafe.Pointer
|
|
libGLES unsafe.Pointer
|
|
)
|
|
|
|
func (c *defaultContext) init() error {
|
|
var preferES bool
|
|
if runtime.GOOS == "android" {
|
|
preferES = true
|
|
}
|
|
if !preferES {
|
|
for _, t := range strings.Split(os.Getenv("EBITENGINE_OPENGL"), ",") {
|
|
switch strings.TrimSpace(t) {
|
|
case "es":
|
|
preferES = true
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
// Try OpenGL first. OpenGL is preferable as this doesn't cause context losses.
|
|
if !preferES {
|
|
// Usually libGL.so or libGL.so.1 is used. libGL.so.2 might exist only on NetBSD.
|
|
for _, name := range []string{"libGL.so", "libGL.so.2", "libGL.so.1", "libGL.so.0"} {
|
|
cname := C.CString(name)
|
|
lib := C.dlopen(cname, C.RTLD_LAZY|C.RTLD_GLOBAL)
|
|
C.free(unsafe.Pointer(cname))
|
|
if lib != nil {
|
|
libGL = lib
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
|
|
// Try OpenGL ES.
|
|
for _, name := range []string{"libGLESv2.so", "libGLESv2.so.2", "libGLESv2.so.1", "libGLESv2.so.0"} {
|
|
cname := C.CString(name)
|
|
lib := C.dlopen(cname, C.RTLD_LAZY|C.RTLD_GLOBAL)
|
|
C.free(unsafe.Pointer(cname))
|
|
if lib != nil {
|
|
libGLES = lib
|
|
c.isES = true
|
|
return nil
|
|
}
|
|
}
|
|
|
|
return fmt.Errorf("gl: failed to load libGL.so and libGLESv2.so")
|
|
}
|
|
|
|
func (c *defaultContext) getProcAddress(name string) unsafe.Pointer {
|
|
if c.isES {
|
|
return getProcAddressGLES(name)
|
|
}
|
|
return getProcAddressGL(name)
|
|
}
|
|
|
|
func getProcAddressGL(name string) unsafe.Pointer {
|
|
cname := C.CString(name)
|
|
defer C.free(unsafe.Pointer(cname))
|
|
return C.getProcAddressGL(libGL, cname)
|
|
}
|
|
|
|
func getProcAddressGLES(name string) unsafe.Pointer {
|
|
name = strings.TrimSuffix(name, "EXT")
|
|
cname := C.CString(name)
|
|
defer C.free(unsafe.Pointer(cname))
|
|
return C.getProcAddressGLES(libGLES, cname)
|
|
}
|