2016-06-02 19:34:34 +02:00
|
|
|
// Copyright 2016 Hajime Hoshi
|
|
|
|
//
|
|
|
|
// 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 graphics
|
|
|
|
|
|
|
|
import (
|
2016-06-03 05:41:18 +02:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2016-06-02 19:34:34 +02:00
|
|
|
|
2016-10-31 16:20:27 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
2017-08-06 13:05:14 +02:00
|
|
|
emath "github.com/hajimehoshi/ebiten/internal/math"
|
2016-11-03 15:31:25 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2017-05-26 19:37:01 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/sync"
|
2016-06-02 19:34:34 +02:00
|
|
|
)
|
|
|
|
|
2017-09-11 20:12:17 +02:00
|
|
|
// command represents a drawing command.
|
|
|
|
//
|
|
|
|
// A command for drawing that is created when Image functions are called like DrawImage,
|
|
|
|
// or Fill.
|
|
|
|
// A command is not immediately executed after created. Instaed, it is queued after created,
|
|
|
|
// and executed only when necessary.
|
2016-06-02 19:34:34 +02:00
|
|
|
type command interface {
|
2017-05-30 19:09:27 +02:00
|
|
|
Exec(indexOffsetInBytes int) error
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2017-09-16 08:49:29 +02:00
|
|
|
// commandQueue is a command queue for drawing commands.
|
2016-06-02 19:34:34 +02:00
|
|
|
type commandQueue struct {
|
2017-09-18 18:37:24 +02:00
|
|
|
// commands is a queue of drawing commands.
|
|
|
|
commands []command
|
|
|
|
|
|
|
|
// vertices represents a vertices data in OpenGL's array buffer.
|
|
|
|
vertices []float32
|
|
|
|
|
|
|
|
// verticesNum represents the current length of vertices.
|
|
|
|
// verticesNum must <= len(vertices).
|
|
|
|
// vertices is never shrunk since re-extending a vertices buffer is heavy.
|
2017-01-18 17:26:56 +01:00
|
|
|
verticesNum int
|
2017-09-18 18:37:24 +02:00
|
|
|
|
|
|
|
m sync.Mutex
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2017-09-16 08:49:29 +02:00
|
|
|
// theCommandQueue is the command queue for the current process.
|
2017-05-26 15:32:38 +02:00
|
|
|
var theCommandQueue = &commandQueue{}
|
2017-01-18 17:26:56 +01:00
|
|
|
|
2017-09-18 18:37:24 +02:00
|
|
|
// appendVertices appends vertices to the queue.
|
2017-05-02 15:45:09 +02:00
|
|
|
func (q *commandQueue) appendVertices(vertices []float32) {
|
2017-01-18 17:26:56 +01:00
|
|
|
if len(q.vertices) < q.verticesNum+len(vertices) {
|
|
|
|
n := q.verticesNum + len(vertices) - len(q.vertices)
|
|
|
|
q.vertices = append(q.vertices, make([]float32, n)...)
|
|
|
|
}
|
2017-05-27 17:08:10 +02:00
|
|
|
// for-loop might be faster than copy:
|
|
|
|
// On GopherJS, copy might cause subarray calls.
|
|
|
|
for i := 0; i < len(vertices); i++ {
|
|
|
|
q.vertices[q.verticesNum+i] = vertices[i]
|
|
|
|
}
|
2017-01-18 17:26:56 +01:00
|
|
|
q.verticesNum += len(vertices)
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2017-09-18 18:37:24 +02:00
|
|
|
// EnqueueDrawImageCommand enqueues a drawing-image command.
|
2018-02-13 18:02:48 +01:00
|
|
|
func (q *commandQueue) EnqueueDrawImageCommand(dst, src *Image, vertices []float32, clr *affine.ColorM, mode opengl.CompositeMode, filter Filter) {
|
2017-05-27 14:35:38 +02:00
|
|
|
// Avoid defer for performance
|
2016-07-03 15:55:15 +02:00
|
|
|
q.m.Lock()
|
2017-05-02 15:45:09 +02:00
|
|
|
q.appendVertices(vertices)
|
2016-11-03 09:40:52 +01:00
|
|
|
if 0 < len(q.commands) {
|
2017-05-02 15:45:09 +02:00
|
|
|
if c, ok := q.commands[len(q.commands)-1].(*drawImageCommand); ok {
|
2018-02-13 18:02:48 +01:00
|
|
|
if c.canMerge(dst, src, clr, mode, filter) {
|
2017-05-02 15:45:09 +02:00
|
|
|
c.verticesNum += len(vertices)
|
2017-05-27 14:35:38 +02:00
|
|
|
q.m.Unlock()
|
2017-05-02 15:45:09 +02:00
|
|
|
return
|
2016-10-25 04:53:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-02 15:45:09 +02:00
|
|
|
c := &drawImageCommand{
|
|
|
|
dst: dst,
|
|
|
|
src: src,
|
|
|
|
verticesNum: len(vertices),
|
2018-02-27 17:40:37 +01:00
|
|
|
color: clr,
|
2017-05-02 15:45:09 +02:00
|
|
|
mode: mode,
|
2018-02-13 18:02:48 +01:00
|
|
|
filter: filter,
|
2017-05-02 15:45:09 +02:00
|
|
|
}
|
|
|
|
q.commands = append(q.commands, c)
|
2017-05-27 14:35:38 +02:00
|
|
|
q.m.Unlock()
|
2017-05-02 15:45:09 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Enqueue enqueues a drawing command other than a draw-image command.
|
|
|
|
//
|
2017-09-21 16:33:27 +02:00
|
|
|
// For a draw-image command, use EnqueueDrawImageCommand.
|
2017-05-02 15:45:09 +02:00
|
|
|
func (q *commandQueue) Enqueue(command command) {
|
|
|
|
q.m.Lock()
|
2016-11-03 09:40:52 +01:00
|
|
|
q.commands = append(q.commands, command)
|
2017-05-27 14:35:38 +02:00
|
|
|
q.m.Unlock()
|
2016-10-25 04:53:00 +02:00
|
|
|
}
|
|
|
|
|
2016-07-16 12:34:36 +02:00
|
|
|
// commandGroups separates q.commands into some groups.
|
|
|
|
// The number of quads of drawImageCommand in one groups must be equal to or less than
|
|
|
|
// its limit (maxQuads).
|
2016-07-16 12:17:57 +02:00
|
|
|
func (q *commandQueue) commandGroups() [][]command {
|
2016-11-03 09:40:52 +01:00
|
|
|
cs := q.commands
|
2017-05-26 15:32:38 +02:00
|
|
|
var gs [][]command
|
2016-07-16 12:17:57 +02:00
|
|
|
quads := 0
|
|
|
|
for 0 < len(cs) {
|
|
|
|
if len(gs) == 0 {
|
|
|
|
gs = append(gs, []command{})
|
|
|
|
}
|
|
|
|
c := cs[0]
|
|
|
|
switch c := c.(type) {
|
|
|
|
case *drawImageCommand:
|
|
|
|
if maxQuads >= quads+c.quadsNum() {
|
|
|
|
quads += c.quadsNum()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
cc := c.split(maxQuads - quads)
|
|
|
|
gs[len(gs)-1] = append(gs[len(gs)-1], cc[0])
|
|
|
|
cs[0] = cc[1]
|
|
|
|
quads = 0
|
|
|
|
gs = append(gs, []command{})
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
gs[len(gs)-1] = append(gs[len(gs)-1], c)
|
|
|
|
cs = cs[1:]
|
|
|
|
}
|
|
|
|
return gs
|
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Flush flushes the command queue.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (q *commandQueue) Flush() error {
|
2016-07-03 15:55:15 +02:00
|
|
|
q.m.Lock()
|
|
|
|
defer q.m.Unlock()
|
2016-07-03 15:35:27 +02:00
|
|
|
// glViewport must be called at least at every frame on iOS.
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().ResetViewportSize()
|
2017-01-18 17:26:56 +01:00
|
|
|
n := 0
|
|
|
|
lastN := 0
|
2016-07-16 12:17:57 +02:00
|
|
|
for _, g := range q.commandGroups() {
|
|
|
|
for _, c := range g {
|
|
|
|
switch c := c.(type) {
|
|
|
|
case *drawImageCommand:
|
2017-01-18 17:26:56 +01:00
|
|
|
n += c.verticesNum
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
2016-06-03 05:41:18 +02:00
|
|
|
}
|
2017-01-18 17:26:56 +01:00
|
|
|
if 0 < n-lastN {
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().BufferSubData(opengl.ArrayBuffer, q.vertices[lastN:n])
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
|
|
|
// NOTE: WebGL doesn't seem to have Check gl.MAX_ELEMENTS_VERTICES or gl.MAX_ELEMENTS_INDICES so far.
|
|
|
|
// Let's use them to compare to len(quads) in the future.
|
2017-01-18 17:26:56 +01:00
|
|
|
if maxQuads < (n-lastN)*opengl.Float.SizeInBytes()/QuadVertexSizeInBytes() {
|
2016-10-22 18:52:55 +02:00
|
|
|
return fmt.Errorf("len(quads) must be equal to or less than %d", maxQuads)
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
2016-07-16 12:17:57 +02:00
|
|
|
numc := len(g)
|
|
|
|
indexOffsetInBytes := 0
|
|
|
|
for _, c := range g {
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := c.Exec(indexOffsetInBytes); err != nil {
|
2016-07-16 12:17:57 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if c, ok := c.(*drawImageCommand); ok {
|
2017-01-18 17:26:56 +01:00
|
|
|
n := c.verticesNum * opengl.Float.SizeInBytes() / QuadVertexSizeInBytes()
|
2016-10-25 17:20:41 +02:00
|
|
|
indexOffsetInBytes += 6 * n * 2
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if 0 < numc {
|
|
|
|
// Call glFlush to prevent black flicking (especially on Android (#226) and iOS).
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().Flush()
|
2016-07-15 21:17:44 +02:00
|
|
|
}
|
2017-01-18 17:26:56 +01:00
|
|
|
lastN = n
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
2017-05-26 15:32:38 +02:00
|
|
|
q.commands = nil
|
2017-01-18 17:26:56 +01:00
|
|
|
q.verticesNum = 0
|
2016-06-02 19:34:34 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// FlushCommands flushes the command queue.
|
2017-05-30 19:09:27 +02:00
|
|
|
func FlushCommands() error {
|
|
|
|
return theCommandQueue.Flush()
|
2016-06-10 22:48:09 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// drawImageCommand represents a drawing command to draw an image on another image.
|
2016-06-02 19:34:34 +02:00
|
|
|
type drawImageCommand struct {
|
2017-01-18 17:26:56 +01:00
|
|
|
dst *Image
|
|
|
|
src *Image
|
|
|
|
verticesNum int
|
2018-02-27 17:40:37 +01:00
|
|
|
color *affine.ColorM
|
2017-01-18 17:26:56 +01:00
|
|
|
mode opengl.CompositeMode
|
2018-02-13 18:02:48 +01:00
|
|
|
filter Filter
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// QuadVertexSizeInBytes returns the size in bytes of vertices for a quadrangle.
|
2016-10-22 20:12:11 +02:00
|
|
|
func QuadVertexSizeInBytes() int {
|
2016-10-28 18:07:19 +02:00
|
|
|
return 4 * theArrayBufferLayout.totalBytes()
|
2016-10-22 20:12:11 +02:00
|
|
|
}
|
2016-10-17 04:16:17 +02:00
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes the drawImageCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *drawImageCommand) Exec(indexOffsetInBytes int) error {
|
|
|
|
f, err := c.dst.createFramebufferIfNeeded()
|
2016-12-14 15:40:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-09-24 17:17:07 +02:00
|
|
|
f.setAsViewport()
|
|
|
|
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().BlendFunc(c.mode)
|
2016-06-03 05:41:18 +02:00
|
|
|
|
2016-07-16 12:17:57 +02:00
|
|
|
n := c.quadsNum()
|
2016-06-03 05:41:18 +02:00
|
|
|
if n == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
2018-02-24 15:33:28 +01:00
|
|
|
proj := f.projectionMatrix()
|
2018-02-22 03:46:46 +01:00
|
|
|
theOpenGLState.useProgram(proj, c.src.texture.native, c.dst, c.src, c.color, c.filter)
|
2016-06-03 05:41:18 +02:00
|
|
|
// TODO: We should call glBindBuffer here?
|
|
|
|
// The buffer is already bound at begin() but it is counterintuitive.
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().DrawElements(opengl.Triangles, 6*n, indexOffsetInBytes)
|
2017-12-11 15:07:01 +01:00
|
|
|
|
2017-12-20 19:17:07 +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.
|
2016-06-03 05:41:18 +02:00
|
|
|
return nil
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// split splits the drawImageCommand c into two drawImageCommands.
|
|
|
|
//
|
|
|
|
// split is called when the number of vertices reaches of the maximum and
|
|
|
|
// a command is needed to be executed as another draw call.
|
2016-07-16 12:17:57 +02:00
|
|
|
func (c *drawImageCommand) split(quadsNum int) [2]*drawImageCommand {
|
|
|
|
c1 := *c
|
|
|
|
c2 := *c
|
2016-11-01 18:06:37 +01:00
|
|
|
s := opengl.Float.SizeInBytes()
|
2017-01-18 17:26:56 +01:00
|
|
|
n := quadsNum * QuadVertexSizeInBytes() / s
|
|
|
|
c1.verticesNum = n
|
|
|
|
c2.verticesNum -= n
|
2016-07-16 12:17:57 +02:00
|
|
|
return [2]*drawImageCommand{&c1, &c2}
|
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// canMerge returns a boolean value indicating whether the other drawImageCommand can be merged
|
|
|
|
// with the drawImageCommand c.
|
2018-02-13 18:02:48 +01:00
|
|
|
func (c *drawImageCommand) canMerge(dst, src *Image, clr *affine.ColorM, mode opengl.CompositeMode, filter Filter) bool {
|
2017-05-02 15:45:09 +02:00
|
|
|
if c.dst != dst {
|
2016-10-25 04:53:00 +02:00
|
|
|
return false
|
|
|
|
}
|
2017-05-02 15:45:09 +02:00
|
|
|
if c.src != src {
|
2016-10-25 04:53:00 +02:00
|
|
|
return false
|
|
|
|
}
|
2017-05-27 09:14:48 +02:00
|
|
|
if !c.color.Equals(clr) {
|
2016-10-31 16:28:07 +01:00
|
|
|
return false
|
2016-10-25 04:53:00 +02:00
|
|
|
}
|
2017-05-02 15:45:09 +02:00
|
|
|
if c.mode != mode {
|
2016-10-25 04:53:00 +02:00
|
|
|
return false
|
|
|
|
}
|
2018-02-13 18:02:48 +01:00
|
|
|
if c.filter != filter {
|
|
|
|
return false
|
|
|
|
}
|
2016-10-25 04:53:00 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// quadsNum returns the number of quadrangles.
|
2016-07-16 12:17:57 +02:00
|
|
|
func (c *drawImageCommand) quadsNum() int {
|
2017-01-18 17:26:56 +01:00
|
|
|
return c.verticesNum * opengl.Float.SizeInBytes() / QuadVertexSizeInBytes()
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// replacePixelsCommand represents a command to replace pixels of an image.
|
2016-06-02 19:34:34 +02:00
|
|
|
type replacePixelsCommand struct {
|
2016-06-12 15:44:23 +02:00
|
|
|
dst *Image
|
2018-01-28 14:40:36 +01:00
|
|
|
pixels []byte
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes the replacePixelsCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *replacePixelsCommand) Exec(indexOffsetInBytes int) error {
|
|
|
|
f, err := c.dst.createFramebufferIfNeeded()
|
2016-12-14 15:40:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-09-24 17:17:07 +02:00
|
|
|
f.setAsViewport()
|
|
|
|
|
2018-02-28 15:33:22 +01:00
|
|
|
// This is necessary on Android.
|
|
|
|
//
|
|
|
|
// glTexSubImage2D didn't work without this hack at least on Nexus 5x (#211).
|
2016-07-10 07:49:41 +02:00
|
|
|
// This also happens when a fillCommand precedes a replacePixelsCommand.
|
2016-07-09 22:59:21 +02:00
|
|
|
// TODO: Can we have a better way like optimizing commands?
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().Flush()
|
2017-09-24 17:11:19 +02:00
|
|
|
opengl.GetContext().BindTexture(c.dst.texture.native)
|
2017-08-06 13:05:14 +02:00
|
|
|
opengl.GetContext().TexSubImage2D(c.pixels, emath.NextPowerOf2Int(c.dst.width), emath.NextPowerOf2Int(c.dst.height))
|
2016-06-02 19:34:34 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-06-11 15:52:07 +02:00
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// disposeCommand represents a command to dispose an image.
|
2016-06-11 15:52:07 +02:00
|
|
|
type disposeCommand struct {
|
2016-06-12 15:44:23 +02:00
|
|
|
target *Image
|
2016-06-11 15:52:07 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes the disposeCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *disposeCommand) Exec(indexOffsetInBytes int) error {
|
2017-12-31 12:55:04 +01:00
|
|
|
if c.target.framebuffer != nil &&
|
|
|
|
c.target.framebuffer.native != opengl.GetContext().ScreenFramebuffer() {
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().DeleteFramebuffer(c.target.framebuffer.native)
|
2016-06-11 15:52:07 +02:00
|
|
|
}
|
2016-06-12 15:44:23 +02:00
|
|
|
if c.target.texture != nil {
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().DeleteTexture(c.target.texture.native)
|
2016-06-11 15:52:07 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2016-06-11 17:23:26 +02:00
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// newImageCommand represents a command to create an empty image with given width and height.
|
2016-06-11 17:23:26 +02:00
|
|
|
type newImageCommand struct {
|
2016-06-12 15:44:23 +02:00
|
|
|
result *Image
|
|
|
|
width int
|
|
|
|
height int
|
2016-06-11 17:23:26 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes a newImageCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *newImageCommand) Exec(indexOffsetInBytes int) error {
|
2017-08-06 13:05:14 +02:00
|
|
|
w := emath.NextPowerOf2Int(c.width)
|
|
|
|
h := emath.NextPowerOf2Int(c.height)
|
2016-08-07 10:27:17 +02:00
|
|
|
if w < 1 {
|
|
|
|
return errors.New("graphics: width must be equal or more than 1.")
|
2016-06-11 17:23:26 +02:00
|
|
|
}
|
2016-08-07 10:27:17 +02:00
|
|
|
if h < 1 {
|
|
|
|
return errors.New("graphics: height must be equal or more than 1.")
|
2016-06-11 17:23:26 +02:00
|
|
|
}
|
2018-02-25 15:34:34 +01:00
|
|
|
native, err := opengl.GetContext().NewTexture(w, h)
|
2016-06-11 17:23:26 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-06-12 15:44:23 +02:00
|
|
|
c.result.texture = &texture{
|
|
|
|
native: native,
|
|
|
|
}
|
2016-06-11 17:23:26 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-06-17 21:46:33 +02:00
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// newScreenFramebufferImageCommand is a command to create a special image for the screen.
|
2016-06-17 21:46:33 +02:00
|
|
|
type newScreenFramebufferImageCommand struct {
|
2018-02-24 15:35:55 +01:00
|
|
|
result *Image
|
|
|
|
width int
|
|
|
|
height int
|
2016-06-17 21:46:33 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Exec executes a newScreenFramebufferImageCommand.
|
2017-05-30 19:09:27 +02:00
|
|
|
func (c *newScreenFramebufferImageCommand) Exec(indexOffsetInBytes int) error {
|
2016-08-07 10:27:17 +02:00
|
|
|
if c.width < 1 {
|
|
|
|
return errors.New("graphics: width must be equal or more than 1.")
|
2016-06-17 21:46:33 +02:00
|
|
|
}
|
2016-08-07 10:27:17 +02:00
|
|
|
if c.height < 1 {
|
|
|
|
return errors.New("graphics: height must be equal or more than 1.")
|
2016-06-17 21:46:33 +02:00
|
|
|
}
|
2017-12-04 19:13:40 +01:00
|
|
|
// 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-02-24 15:35:55 +01:00
|
|
|
c.result.framebuffer = newScreenFramebuffer(c.width, c.height)
|
2016-06-17 21:46:33 +02:00
|
|
|
return nil
|
|
|
|
}
|