2022-11-13 17:55:26 +01:00
|
|
|
// 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.
|
2022-05-27 11:26:53 +02:00
|
|
|
|
|
|
|
package gl
|
|
|
|
|
|
|
|
import (
|
2022-11-13 19:42:37 +01:00
|
|
|
"fmt"
|
2022-11-14 18:33:43 +01:00
|
|
|
"strings"
|
2022-11-13 19:42:37 +01:00
|
|
|
|
2022-06-10 14:59:01 +02:00
|
|
|
"github.com/ebitengine/purego"
|
2022-05-27 11:26:53 +02:00
|
|
|
)
|
|
|
|
|
2022-11-13 18:03:36 +01:00
|
|
|
var (
|
|
|
|
opengl uintptr
|
|
|
|
)
|
2022-11-13 11:51:36 +01:00
|
|
|
|
2022-11-13 19:42:37 +01:00
|
|
|
func (c *defaultContext) init() error {
|
2023-03-03 17:08:08 +01:00
|
|
|
lib, errGLES := purego.Dlopen("OpenGLES.framework/OpenGLES", purego.RTLD_LAZY|purego.RTLD_GLOBAL)
|
|
|
|
if errGLES == nil {
|
2022-11-13 19:42:37 +01:00
|
|
|
c.isES = true
|
2023-03-03 17:08:08 +01:00
|
|
|
opengl = lib
|
2022-11-13 19:42:37 +01:00
|
|
|
return nil
|
2022-11-13 11:51:36 +01:00
|
|
|
}
|
2023-03-03 17:08:08 +01:00
|
|
|
|
|
|
|
lib, errGL := purego.Dlopen("OpenGL.framework/OpenGL", purego.RTLD_LAZY|purego.RTLD_GLOBAL)
|
|
|
|
if errGL == nil {
|
|
|
|
opengl = lib
|
2022-11-13 19:42:37 +01:00
|
|
|
return nil
|
|
|
|
}
|
2023-03-03 17:08:08 +01:00
|
|
|
|
|
|
|
// TODO: Use multiple %w-s as of Go 1.20
|
|
|
|
return fmt.Errorf("gl: failed to load: OpenGL.framework: %v, OpenGLES.framework: %v", errGL, errGLES)
|
2022-11-13 11:51:36 +01:00
|
|
|
}
|
2022-05-27 11:26:53 +02:00
|
|
|
|
2022-11-13 19:42:37 +01:00
|
|
|
func (c *defaultContext) getProcAddress(name string) uintptr {
|
2022-11-14 18:33:43 +01:00
|
|
|
if c.isES {
|
2022-11-14 18:38:38 +01:00
|
|
|
name = strings.TrimSuffix(name, "EXT")
|
2022-11-14 18:33:43 +01:00
|
|
|
}
|
2023-03-03 17:08:08 +01:00
|
|
|
proc, err := purego.Dlsym(opengl, name)
|
|
|
|
if err != nil {
|
|
|
|
// The proc is not found.
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return proc
|
2022-05-27 11:26:53 +02:00
|
|
|
}
|