2022-02-11 18:12:47 +01:00
|
|
|
// Copyright 2022 The Ebiten Authors
|
2019-09-02 21:08:58 +02:00
|
|
|
//
|
|
|
|
// 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-03-22 16:00:45 +01:00
|
|
|
//go:build ios
|
|
|
|
// +build ios
|
2019-09-02 21:08:58 +02:00
|
|
|
|
2022-03-19 15:55:14 +01:00
|
|
|
package ui
|
2019-09-02 21:08:58 +02:00
|
|
|
|
2022-03-22 15:33:21 +01:00
|
|
|
import (
|
2022-06-16 19:10:29 +02:00
|
|
|
"fmt"
|
|
|
|
|
2022-03-22 15:33:21 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver/metal"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver/opengl"
|
|
|
|
)
|
|
|
|
|
2022-06-16 19:10:29 +02:00
|
|
|
type graphicsDriverCreatorImpl struct {
|
2022-03-22 15:33:21 +01:00
|
|
|
gomobileBuild bool
|
|
|
|
}
|
|
|
|
|
2022-07-30 19:56:16 +02:00
|
|
|
func (g *graphicsDriverCreatorImpl) newAuto() (graphicsdriver.Graphics, GraphicsLibrary, error) {
|
2022-06-16 19:10:29 +02:00
|
|
|
m, err1 := g.newMetal()
|
|
|
|
if err1 == nil {
|
2022-07-30 19:56:16 +02:00
|
|
|
return m, GraphicsLibraryMetal, nil
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
2022-06-16 19:10:29 +02:00
|
|
|
o, err2 := g.newOpenGL()
|
|
|
|
if err2 == nil {
|
2022-07-30 19:56:16 +02:00
|
|
|
return o, GraphicsLibraryMetal, nil
|
2022-06-16 19:10:29 +02:00
|
|
|
}
|
2022-07-30 19:56:16 +02:00
|
|
|
return nil, GraphicsLibraryUnknown, fmt.Errorf("ui: failed to choose graphics drivers: Metal: %v, OpenGL: %v", err1, err2)
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
|
|
|
|
2022-06-16 19:10:29 +02:00
|
|
|
func (*graphicsDriverCreatorImpl) newOpenGL() (graphicsdriver.Graphics, error) {
|
2022-06-16 19:02:29 +02:00
|
|
|
return opengl.NewGraphics()
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
|
|
|
|
2022-06-17 04:39:43 +02:00
|
|
|
func (*graphicsDriverCreatorImpl) newDirectX() (graphicsdriver.Graphics, error) {
|
|
|
|
return nil, nil
|
2022-03-25 11:43:32 +01:00
|
|
|
}
|
|
|
|
|
2022-06-16 19:10:29 +02:00
|
|
|
func (g *graphicsDriverCreatorImpl) newMetal() (graphicsdriver.Graphics, error) {
|
2022-03-22 15:33:21 +01:00
|
|
|
if g.gomobileBuild {
|
2022-06-16 19:10:29 +02:00
|
|
|
return nil, fmt.Errorf("ui: Metal is not available with gomobile-build")
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
2022-06-16 19:10:29 +02:00
|
|
|
return metal.NewGraphics()
|
2022-03-22 15:33:21 +01:00
|
|
|
}
|
|
|
|
|
2022-03-22 16:00:45 +01:00
|
|
|
func SetUIView(uiview uintptr) {
|
|
|
|
// This function should be called only when the graphics library is Metal.
|
|
|
|
if g, ok := theUI.graphicsDriver.(interface{ SetUIView(uintptr) }); ok {
|
|
|
|
g.SetUIView(uiview)
|
|
|
|
}
|
|
|
|
}
|
2019-09-02 21:08:58 +02:00
|
|
|
|
2022-03-22 16:00:45 +01:00
|
|
|
func IsGL() bool {
|
|
|
|
return theUI.graphicsDriver.IsGL()
|
2019-09-02 21:08:58 +02:00
|
|
|
}
|