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 {
|
2022-11-14 18:33:43 +01:00
|
|
|
opengl = purego.Dlopen("OpenGLES.framework/OpenGLES", purego.RTLD_LAZY|purego.RTLD_GLOBAL)
|
2022-11-13 11:51:36 +01:00
|
|
|
if opengl != 0 {
|
2022-11-13 19:42:37 +01:00
|
|
|
c.isES = true
|
|
|
|
return nil
|
2022-11-13 11:51:36 +01:00
|
|
|
}
|
2022-11-14 18:33:43 +01:00
|
|
|
opengl = purego.Dlopen("OpenGL.framework/OpenGL", purego.RTLD_LAZY|purego.RTLD_GLOBAL)
|
2022-11-13 19:42:37 +01:00
|
|
|
if opengl != 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("gl: failed to load OpenGL.framework and OpenGLES.framework")
|
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
|
|
|
}
|
2022-05-27 11:26:53 +02:00
|
|
|
return purego.Dlsym(opengl, name)
|
|
|
|
}
|