2018-11-05 19:56:04 +01:00
|
|
|
// Copyright 2018 The Ebiten 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.
|
|
|
|
|
|
|
|
package opengl
|
|
|
|
|
|
|
|
import (
|
2018-11-10 19:37:37 +01:00
|
|
|
"fmt"
|
|
|
|
|
2018-11-05 19:56:04 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
2018-11-10 14:47:39 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphicsdriver"
|
2018-11-05 19:56:04 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/math"
|
|
|
|
)
|
|
|
|
|
|
|
|
var theDriver Driver
|
|
|
|
|
|
|
|
func GetDriver() *Driver {
|
|
|
|
return &theDriver
|
|
|
|
}
|
|
|
|
|
|
|
|
type Driver struct {
|
2018-11-10 19:37:37 +01:00
|
|
|
state openGLState
|
|
|
|
context context
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Driver) checkSize(width, height int) {
|
|
|
|
if width < 1 {
|
|
|
|
panic(fmt.Sprintf("opengl: width (%d) must be equal or more than 1.", width))
|
|
|
|
}
|
|
|
|
if height < 1 {
|
|
|
|
panic(fmt.Sprintf("opengl: height (%d) must be equal or more than 1.", height))
|
|
|
|
}
|
|
|
|
m := d.context.getMaxTextureSize()
|
|
|
|
if width > m {
|
|
|
|
panic(fmt.Sprintf("opengl: width (%d) must be less than or equal to %d", width, m))
|
|
|
|
}
|
|
|
|
if height > m {
|
|
|
|
panic(fmt.Sprintf("opengl: height (%d) must be less than or equal to %d", height, m))
|
|
|
|
}
|
2018-11-05 19:56:04 +01:00
|
|
|
}
|
|
|
|
|
2018-11-10 14:47:39 +01:00
|
|
|
func (d *Driver) NewImage(width, height int) (graphicsdriver.Image, error) {
|
2018-11-05 19:56:04 +01:00
|
|
|
i := &Image{
|
2018-11-06 17:59:14 +01:00
|
|
|
driver: d,
|
2018-11-05 19:56:04 +01:00
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
}
|
|
|
|
w := math.NextPowerOf2Int(width)
|
|
|
|
h := math.NextPowerOf2Int(height)
|
2018-11-10 19:37:37 +01:00
|
|
|
d.checkSize(w, h)
|
|
|
|
t, err := d.context.newTexture(w, h)
|
2018-11-05 19:56:04 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
i.textureNative = t
|
|
|
|
return i, nil
|
|
|
|
}
|
|
|
|
|
2018-11-10 14:47:39 +01:00
|
|
|
func (d *Driver) NewScreenFramebufferImage(width, height int) graphicsdriver.Image {
|
2018-11-10 19:37:37 +01:00
|
|
|
d.checkSize(width, height)
|
2018-11-05 19:56:04 +01:00
|
|
|
i := &Image{
|
2018-11-06 17:59:14 +01:00
|
|
|
driver: d,
|
2018-11-05 19:56:04 +01:00
|
|
|
width: width,
|
|
|
|
height: height,
|
|
|
|
}
|
|
|
|
// The (default) framebuffer size can't be converted to a power of 2.
|
|
|
|
// On browsers, c.width and c.height are used as viewport size and
|
|
|
|
// Edge can't treat a bigger viewport than the drawing area (#71).
|
2018-11-10 19:37:37 +01:00
|
|
|
i.framebuffer = newScreenFramebuffer(&d.context, width, height)
|
2018-11-05 19:56:04 +01:00
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset resets or initializes the current OpenGL state.
|
|
|
|
func (d *Driver) Reset() error {
|
2018-11-10 19:37:37 +01:00
|
|
|
return d.state.reset(&d.context)
|
2018-11-05 19:56:04 +01:00
|
|
|
}
|
|
|
|
|
2018-11-11 15:54:58 +01:00
|
|
|
func (d *Driver) SetVertices(vertices []float32, indices []uint16) {
|
|
|
|
// Note that the vertices passed to BufferSubData is not under GC management
|
|
|
|
// in opengl package due to unsafe-way.
|
|
|
|
// See BufferSubData in context_mobile.go.
|
2018-11-11 14:08:36 +01:00
|
|
|
d.context.arrayBufferSubData(vertices)
|
|
|
|
d.context.elementArrayBufferSubData(indices)
|
2018-11-05 19:56:04 +01:00
|
|
|
}
|
|
|
|
|
2018-11-11 15:53:23 +01:00
|
|
|
func (d *Driver) Draw(indexLen int, indexOffset int, mode graphics.CompositeMode, colorM *affine.ColorM, filter graphics.Filter) error {
|
|
|
|
if err := d.useProgram(mode, colorM, filter); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
d.context.drawElements(indexLen, indexOffset*2) // 2 is uint16 size in bytes
|
2018-11-10 17:35:10 +01:00
|
|
|
// glFlush() might be necessary at least on MacBook Pro (a smilar problem at #419),
|
|
|
|
// but basically this pass the tests (esp. TestImageTooManyFill).
|
|
|
|
// As glFlush() causes performance problems, this should be avoided as much as possible.
|
|
|
|
// Let's wait and see, and file a new issue when this problem is newly found.
|
2018-11-11 15:53:23 +01:00
|
|
|
return nil
|
2018-11-05 19:56:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Driver) Flush() {
|
2018-11-10 19:37:37 +01:00
|
|
|
d.context.flush()
|
2018-11-05 19:56:04 +01:00
|
|
|
}
|
|
|
|
|
2018-11-10 17:26:37 +01:00
|
|
|
func (d *Driver) MaxImageSize() int {
|
2018-11-10 19:37:37 +01:00
|
|
|
return d.context.getMaxTextureSize()
|
2018-11-05 19:56:04 +01:00
|
|
|
}
|