ebiten/internal/graphicsdriver/opengl/graphics.go

201 lines
5.3 KiB
Go
Raw Normal View History

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 (
"fmt"
2018-11-05 19:56:04 +01:00
"github.com/hajimehoshi/ebiten/internal/affine"
"github.com/hajimehoshi/ebiten/internal/driver"
2018-11-05 19:56:04 +01:00
"github.com/hajimehoshi/ebiten/internal/graphics"
"github.com/hajimehoshi/ebiten/internal/thread"
2018-11-05 19:56:04 +01:00
)
var theGraphics Graphics
2018-11-05 19:56:04 +01:00
func Get() *Graphics {
return &theGraphics
2018-11-05 19:56:04 +01:00
}
type Graphics struct {
state openGLState
context context
// drawCalled is true just after Draw is called. This holds true until ReplacePixels is called.
drawCalled bool
}
func (g *Graphics) SetThread(thread *thread.Thread) {
g.context.t = thread
}
func (g *Graphics) Begin() {
// Do nothing.
}
func (g *Graphics) End() {
// Call glFlush to prevent black flicking (especially on Android (#226) and iOS).
// TODO: examples/sprites worked without this. Is this really needed?
g.context.flush()
}
func (g *Graphics) SetTransparent(transparent bool) {
// Do nothings.
}
func (g *Graphics) checkSize(width, height int) {
if width < 1 {
panic(fmt.Sprintf("opengl: width (%d) must be equal or more than %d", width, 1))
}
if height < 1 {
panic(fmt.Sprintf("opengl: height (%d) must be equal or more than %d", height, 1))
}
m := g.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
}
func (g *Graphics) NewImage(width, height int) (driver.Image, error) {
2018-11-05 19:56:04 +01:00
i := &Image{
graphics: g,
width: width,
height: height,
2018-11-05 19:56:04 +01:00
}
w := graphics.InternalImageSize(width)
h := graphics.InternalImageSize(height)
g.checkSize(w, h)
t, err := g.context.newTexture(w, h)
2018-11-05 19:56:04 +01:00
if err != nil {
return nil, err
}
i.textureNative = t
return i, nil
}
func (g *Graphics) NewScreenFramebufferImage(width, height int) (driver.Image, error) {
g.checkSize(width, height)
2018-11-05 19:56:04 +01:00
i := &Image{
graphics: g,
width: width,
height: height,
screen: true,
2018-11-05 19:56:04 +01:00
}
2018-11-11 15:57:23 +01:00
return i, nil
2018-11-05 19:56:04 +01:00
}
// Reset resets or initializes the current OpenGL state.
func (g *Graphics) Reset() error {
return g.state.reset(&g.context)
2018-11-05 19:56:04 +01:00
}
func (g *Graphics) 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.
g.context.arrayBufferSubData(vertices)
g.context.elementArrayBufferSubData(indices)
2018-11-05 19:56:04 +01:00
}
func (g *Graphics) Draw(indexLen int, indexOffset int, mode driver.CompositeMode, colorM *affine.ColorM, filter driver.Filter, address driver.Address) error {
destination := g.state.destination
if destination == nil {
panic("destination image is not set")
}
source := g.state.source
if source == nil {
panic("source image is not set")
}
g.drawCalled = true
2020-05-17 12:01:46 +02:00
if err := destination.setViewport(); err != nil {
return err
}
2020-05-17 12:01:46 +02:00
g.context.blendFunc(mode)
program := g.state.programs[programKey{
useColorM: colorM != nil,
filter: filter,
address: address,
}]
uniforms := map[string]interface{}{}
vw := destination.framebuffer.width
vh := destination.framebuffer.height
uniforms["viewport_size"] = []float32{float32(vw), float32(vh)}
if colorM != nil {
// ColorM's elements are immutable. It's OK to hold the reference without copying.
esBody, esTranslate := colorM.UnsafeElements()
uniforms["color_matrix_body"] = esBody
uniforms["color_matrix_translation"] = esTranslate
}
if filter != driver.FilterNearest {
srcW, srcH := source.width, source.height
sw := graphics.InternalImageSize(srcW)
sh := graphics.InternalImageSize(srcH)
uniforms["source_size"] = []float32{float32(sw), float32(sh)}
}
if filter == driver.FilterScreen {
scale := float32(destination.width) / float32(source.width)
uniforms["scale"] = scale
}
uniforms["texture"] = source.textureNative
if err := g.useProgram(program, uniforms); err != nil {
return err
}
g.context.drawElements(indexLen, indexOffset*2) // 2 is uint16 size in bytes
// 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 foung.
return nil
2018-11-05 19:56:04 +01:00
}
func (g *Graphics) SetVsyncEnabled(enabled bool) {
2018-11-12 16:00:10 +01:00
// Do nothing
}
2020-05-08 09:49:19 +02:00
func (g *Graphics) FramebufferYDirection() driver.YDirection {
return driver.Upward
2018-11-12 16:00:10 +01:00
}
func (g *Graphics) NeedsRestoring() bool {
return g.context.needsRestoring()
2019-05-26 12:08:46 +02:00
}
func (g *Graphics) IsGL() bool {
2018-11-12 16:00:10 +01:00
return true
}
func (g *Graphics) HasHighPrecisionFloat() bool {
return g.context.hasHighPrecisionFloat()
}
func (g *Graphics) MaxImageSize() int {
return g.context.getMaxTextureSize()
}