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.
|
|
|
|
|
2018-10-28 12:10:05 +01:00
|
|
|
package graphicscommand
|
2016-06-02 19:34:34 +02:00
|
|
|
|
|
|
|
import (
|
2016-06-03 05:41:18 +02:00
|
|
|
"fmt"
|
2016-06-02 19:34:34 +02:00
|
|
|
|
2018-08-05 14:30:06 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/affine"
|
2018-10-28 12:25:52 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/graphics"
|
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"
|
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 {
|
2018-03-04 16:45:03 +01:00
|
|
|
fmt.Stringer
|
|
|
|
|
2017-05-30 19:09:27 +02:00
|
|
|
Exec(indexOffsetInBytes int) error
|
2018-03-04 15:35:14 +01:00
|
|
|
NumVertices() int
|
2018-06-10 10:06:40 +02:00
|
|
|
NumIndices() int
|
2018-03-18 11:58:32 +01:00
|
|
|
AddNumVertices(n int)
|
2018-06-10 10:06:40 +02:00
|
|
|
AddNumIndices(n int)
|
2018-10-28 12:42:57 +01:00
|
|
|
CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter) bool
|
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
|
|
|
|
|
2018-03-04 15:35:14 +01:00
|
|
|
// nvertices represents the current length of vertices.
|
|
|
|
// nvertices must <= len(vertices).
|
2017-09-18 18:37:24 +02:00
|
|
|
// vertices is never shrunk since re-extending a vertices buffer is heavy.
|
2018-06-10 10:10:11 +02:00
|
|
|
//
|
|
|
|
// TODO: This is a number of float32 values, not a number of vertices.
|
|
|
|
// Rename or fix the program.
|
2018-03-04 15:35:14 +01:00
|
|
|
nvertices int
|
2018-05-30 17:53:02 +02:00
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
indices []uint16
|
|
|
|
nindices int
|
2018-06-09 21:55:44 +02:00
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
tmpNumIndices int
|
|
|
|
nextIndex int
|
2018-07-11 19:11:18 +02:00
|
|
|
|
|
|
|
err error
|
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) {
|
2018-03-04 15:35:14 +01:00
|
|
|
if len(q.vertices) < q.nvertices+len(vertices) {
|
|
|
|
n := q.nvertices + len(vertices) - len(q.vertices)
|
2017-01-18 17:26:56 +01:00
|
|
|
q.vertices = append(q.vertices, make([]float32, n)...)
|
|
|
|
}
|
2018-06-16 18:09:05 +02:00
|
|
|
copy(q.vertices[q.nvertices:], vertices)
|
2018-03-04 15:35:14 +01:00
|
|
|
q.nvertices += len(vertices)
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
func (q *commandQueue) appendIndices(indices []uint16, offset uint16) {
|
|
|
|
if len(q.indices) < q.nindices+len(indices) {
|
|
|
|
n := q.nindices + len(indices) - len(q.indices)
|
|
|
|
q.indices = append(q.indices, make([]uint16, n)...)
|
2018-06-03 11:48:14 +02:00
|
|
|
}
|
2018-06-09 21:55:44 +02:00
|
|
|
for i := range indices {
|
2018-06-10 10:06:40 +02:00
|
|
|
q.indices[q.nindices+i] = indices[i] + offset
|
2018-06-09 21:55:44 +02:00
|
|
|
}
|
2018-06-10 10:06:40 +02:00
|
|
|
q.nindices += len(indices)
|
2018-06-03 11:48:14 +02:00
|
|
|
}
|
|
|
|
|
2018-10-28 12:42:57 +01:00
|
|
|
func (q *commandQueue) doEnqueueDrawImageCommand(dst, src *Image, nvertices, nindices int, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter, forceNewCommand bool) {
|
2018-10-29 17:27:31 +01:00
|
|
|
if nindices > opengl.IndicesNum {
|
2018-06-10 10:06:40 +02:00
|
|
|
panic("not implemented for too many indices")
|
2018-06-03 14:47:08 +02:00
|
|
|
}
|
|
|
|
if !forceNewCommand && 0 < len(q.commands) {
|
2018-08-05 14:30:06 +02:00
|
|
|
if last := q.commands[len(q.commands)-1]; last.CanMerge(dst, src, color, mode, filter) {
|
2018-06-03 14:47:08 +02:00
|
|
|
last.AddNumVertices(nvertices)
|
2018-06-10 10:06:40 +02:00
|
|
|
last.AddNumIndices(nindices)
|
2018-06-03 14:47:08 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
c := &drawImageCommand{
|
|
|
|
dst: dst,
|
|
|
|
src: src,
|
|
|
|
nvertices: nvertices,
|
2018-06-10 10:06:40 +02:00
|
|
|
nindices: nindices,
|
2018-08-05 14:30:06 +02:00
|
|
|
color: color,
|
2018-06-03 14:47:08 +02:00
|
|
|
mode: mode,
|
|
|
|
filter: filter,
|
|
|
|
}
|
|
|
|
q.commands = append(q.commands, c)
|
|
|
|
}
|
|
|
|
|
2017-09-18 18:37:24 +02:00
|
|
|
// EnqueueDrawImageCommand enqueues a drawing-image command.
|
2018-10-28 12:42:57 +01:00
|
|
|
func (q *commandQueue) EnqueueDrawImageCommand(dst, src *Image, vertices []float32, indices []uint16, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter) {
|
2018-10-29 17:27:31 +01:00
|
|
|
if len(indices) > opengl.IndicesNum {
|
2018-06-09 21:55:44 +02:00
|
|
|
panic("not reached")
|
2018-06-03 11:48:14 +02:00
|
|
|
}
|
2018-06-09 21:55:44 +02:00
|
|
|
|
|
|
|
split := false
|
2018-10-29 17:27:31 +01:00
|
|
|
if q.tmpNumIndices+len(indices) > opengl.IndicesNum {
|
2018-06-10 10:06:40 +02:00
|
|
|
q.tmpNumIndices = 0
|
2018-06-09 21:55:44 +02:00
|
|
|
q.nextIndex = 0
|
|
|
|
split = true
|
|
|
|
}
|
|
|
|
|
|
|
|
q.appendVertices(vertices)
|
2018-06-10 10:06:40 +02:00
|
|
|
q.appendIndices(indices, uint16(q.nextIndex))
|
2018-10-29 17:27:31 +01:00
|
|
|
q.nextIndex += len(vertices) * opengl.Float.SizeInBytes() / opengl.ArrayBufferLayoutTotalBytes()
|
2018-06-10 10:06:40 +02:00
|
|
|
q.tmpNumIndices += len(indices)
|
2018-06-09 21:55:44 +02:00
|
|
|
|
2018-08-05 14:30:06 +02:00
|
|
|
q.doEnqueueDrawImageCommand(dst, src, len(vertices), len(indices), color, mode, filter, split)
|
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) {
|
2016-11-03 09:40:52 +01:00
|
|
|
q.commands = append(q.commands, command)
|
2016-10-25 04:53:00 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// Flush flushes the command queue.
|
2018-07-11 19:11:18 +02:00
|
|
|
func (q *commandQueue) Flush() {
|
|
|
|
if q.err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
es := q.indices
|
2018-06-03 14:47:08 +02:00
|
|
|
vs := q.vertices
|
2018-03-04 16:45:03 +01:00
|
|
|
if recordLog() {
|
|
|
|
fmt.Println("--")
|
|
|
|
}
|
2018-06-03 14:47:08 +02:00
|
|
|
for len(q.commands) > 0 {
|
|
|
|
nv := 0
|
|
|
|
ne := 0
|
|
|
|
nc := 0
|
|
|
|
for _, c := range q.commands {
|
2018-10-29 17:27:31 +01:00
|
|
|
if c.NumIndices() > opengl.IndicesNum {
|
2018-06-03 14:47:08 +02:00
|
|
|
panic("not reached")
|
|
|
|
}
|
2018-10-29 17:27:31 +01:00
|
|
|
if ne+c.NumIndices() > opengl.IndicesNum {
|
2018-06-03 14:47:08 +02:00
|
|
|
break
|
|
|
|
}
|
2018-06-03 11:48:14 +02:00
|
|
|
nv += c.NumVertices()
|
2018-06-10 10:06:40 +02:00
|
|
|
ne += c.NumIndices()
|
2018-06-03 14:47:08 +02:00
|
|
|
nc++
|
2016-06-03 05:41:18 +02:00
|
|
|
}
|
2018-06-03 14:47:08 +02:00
|
|
|
if 0 < ne {
|
2018-03-04 09:57:50 +01:00
|
|
|
// 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-10-30 16:58:47 +01:00
|
|
|
opengl.BufferSubData(vs[:nv], es[:ne])
|
2018-06-03 14:47:08 +02:00
|
|
|
es = es[ne:]
|
|
|
|
vs = vs[nv:]
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
|
|
|
indexOffsetInBytes := 0
|
2018-06-03 14:47:08 +02:00
|
|
|
for _, c := range q.commands[:nc] {
|
2017-05-30 19:09:27 +02:00
|
|
|
if err := c.Exec(indexOffsetInBytes); err != nil {
|
2018-07-11 19:11:18 +02:00
|
|
|
q.err = err
|
|
|
|
return
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
2018-03-04 16:45:03 +01:00
|
|
|
if recordLog() {
|
|
|
|
fmt.Printf("%s\n", c)
|
|
|
|
}
|
2018-05-27 17:49:16 +02:00
|
|
|
// TODO: indexOffsetInBytes should be reset if the command type is different
|
|
|
|
// from the previous one. This fix is needed when another drawing command is
|
|
|
|
// introduced than drawImageCommand.
|
2018-06-10 10:06:40 +02:00
|
|
|
indexOffsetInBytes += c.NumIndices() * 2 // 2 is uint16 size in bytes
|
2016-07-16 12:17:57 +02:00
|
|
|
}
|
2018-06-03 14:47:08 +02:00
|
|
|
if 0 < nc {
|
2016-07-16 12:17:57 +02:00
|
|
|
// 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
|
|
|
}
|
2018-06-03 14:47:08 +02:00
|
|
|
q.commands = q.commands[nc:]
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
2017-05-26 15:32:38 +02:00
|
|
|
q.commands = nil
|
2018-03-04 15:35:14 +01:00
|
|
|
q.nvertices = 0
|
2018-06-10 10:06:40 +02:00
|
|
|
q.nindices = 0
|
|
|
|
q.tmpNumIndices = 0
|
2018-06-03 11:48:14 +02:00
|
|
|
q.nextIndex = 0
|
2018-07-11 19:11:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Error returns an OpenGL error for the last command.
|
|
|
|
func Error() error {
|
|
|
|
return theCommandQueue.err
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 18:35:56 +02:00
|
|
|
// FlushCommands flushes the command queue.
|
2018-07-11 19:11:18 +02:00
|
|
|
func FlushCommands() {
|
|
|
|
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 {
|
2018-03-04 15:35:14 +01:00
|
|
|
dst *Image
|
|
|
|
src *Image
|
|
|
|
nvertices int
|
2018-06-10 10:06:40 +02:00
|
|
|
nindices int
|
2018-08-05 14:30:06 +02:00
|
|
|
color *affine.ColorM
|
2018-10-28 12:42:57 +01:00
|
|
|
mode graphics.CompositeMode
|
2018-10-28 12:25:52 +01:00
|
|
|
filter graphics.Filter
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2018-03-04 16:45:03 +01:00
|
|
|
func (c *drawImageCommand) String() string {
|
|
|
|
return fmt.Sprintf("draw-image: dst: %p <- src: %p, colorm: %v, mode %d, filter: %d", c.dst, c.src, c.color, c.mode, c.filter)
|
|
|
|
}
|
|
|
|
|
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 {
|
2018-10-31 19:42:30 +01:00
|
|
|
f, err := c.dst.ensureFramebuffer()
|
2016-12-14 15:40:43 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-09-24 17:17:07 +02:00
|
|
|
|
2018-10-31 19:34:58 +01:00
|
|
|
// On some environments, viewport size must be within the framebuffer size.
|
|
|
|
// e.g. Edge (#71), Chrome on GPD Pocket (#420), macOS Mojave (#691).
|
|
|
|
// Use the same size of the framebuffer here.
|
|
|
|
opengl.GetContext().SetViewport(f.native, f.width, f.height)
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().BlendFunc(c.mode)
|
2016-06-03 05:41:18 +02:00
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
if c.nindices == 0 {
|
2016-06-03 05:41:18 +02:00
|
|
|
return nil
|
|
|
|
}
|
2018-02-24 15:33:28 +01:00
|
|
|
proj := f.projectionMatrix()
|
2018-10-29 17:27:31 +01:00
|
|
|
dw, dh := c.dst.Size()
|
|
|
|
sw, sh := c.src.Size()
|
2018-10-31 19:28:51 +01:00
|
|
|
opengl.UseProgram(proj, c.src.texture, dw, dh, sw, sh, c.color, c.filter)
|
2018-10-30 14:29:54 +01:00
|
|
|
opengl.GetContext().DrawElements(c.nindices, 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
|
|
|
}
|
|
|
|
|
2018-03-04 15:35:14 +01:00
|
|
|
func (c *drawImageCommand) NumVertices() int {
|
|
|
|
return c.nvertices
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
func (c *drawImageCommand) NumIndices() int {
|
|
|
|
return c.nindices
|
2018-06-03 08:16:30 +02:00
|
|
|
}
|
|
|
|
|
2018-03-18 11:58:32 +01:00
|
|
|
func (c *drawImageCommand) AddNumVertices(n int) {
|
|
|
|
c.nvertices += n
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
func (c *drawImageCommand) AddNumIndices(n int) {
|
|
|
|
c.nindices += n
|
2018-06-03 08:16:30 +02:00
|
|
|
}
|
|
|
|
|
2018-03-18 11:58:32 +01:00
|
|
|
// CanMerge returns a boolean value indicating whether the other drawImageCommand can be merged
|
2017-09-19 18:35:56 +02:00
|
|
|
// with the drawImageCommand c.
|
2018-10-28 12:42:57 +01:00
|
|
|
func (c *drawImageCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.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
|
|
|
|
}
|
2018-08-05 14:30:06 +02:00
|
|
|
if !c.color.Equals(color) {
|
|
|
|
return false
|
|
|
|
}
|
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
|
|
|
// 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
|
2018-02-28 16:27:55 +01:00
|
|
|
x int
|
|
|
|
y int
|
|
|
|
width int
|
|
|
|
height int
|
2016-06-02 19:34:34 +02:00
|
|
|
}
|
|
|
|
|
2018-03-04 16:45:03 +01:00
|
|
|
func (c *replacePixelsCommand) String() string {
|
|
|
|
return fmt.Sprintf("replace-pixels: dst: %p, x: %d, y: %d, width: %d, height: %d", c.dst, c.x, c.y, c.width, c.height)
|
|
|
|
}
|
|
|
|
|
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 {
|
2018-02-28 15:40:43 +01:00
|
|
|
// glFlush is necessary on Android.
|
|
|
|
// glTexSubImage2D didn't work without this hack at least on Nexus 5x and NuAns NEO [Reloaded] (#211).
|
2017-05-30 19:09:27 +02:00
|
|
|
opengl.GetContext().Flush()
|
2018-11-01 19:43:42 +01:00
|
|
|
opengl.GetContext().TexSubImage2D(c.dst.texture, c.pixels, c.x, c.y, c.width, c.height)
|
2016-06-02 19:34:34 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-06-11 15:52:07 +02:00
|
|
|
|
2018-03-04 15:35:14 +01:00
|
|
|
func (c *replacePixelsCommand) NumVertices() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
func (c *replacePixelsCommand) NumIndices() int {
|
2018-06-03 08:16:30 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-03-18 11:58:32 +01:00
|
|
|
func (c *replacePixelsCommand) AddNumVertices(n int) {
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
func (c *replacePixelsCommand) AddNumIndices(n int) {
|
2018-06-03 08:16:30 +02:00
|
|
|
}
|
|
|
|
|
2018-10-28 12:42:57 +01:00
|
|
|
func (c *replacePixelsCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter) bool {
|
2018-03-18 11:58:32 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-07-11 19:40:06 +02:00
|
|
|
type pixelsCommand struct {
|
|
|
|
result []byte
|
|
|
|
img *Image
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exec executes a pixelsCommand.
|
|
|
|
func (c *pixelsCommand) Exec(indexOffsetInBytes int) error {
|
2018-10-31 19:42:30 +01:00
|
|
|
f, err := c.img.ensureFramebuffer()
|
2018-07-11 19:40:06 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
p, err := opengl.GetContext().FramebufferPixels(f.native, c.img.width, c.img.height)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
c.result = p
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-03-04 16:45:03 +01:00
|
|
|
func (c *pixelsCommand) String() string {
|
|
|
|
return fmt.Sprintf("pixels: img: %p", c.img)
|
|
|
|
}
|
|
|
|
|
2018-07-11 19:40:06 +02:00
|
|
|
func (c *pixelsCommand) NumVertices() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *pixelsCommand) NumIndices() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *pixelsCommand) AddNumVertices(n int) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *pixelsCommand) AddNumIndices(n int) {
|
|
|
|
}
|
|
|
|
|
2018-10-28 12:42:57 +01:00
|
|
|
func (c *pixelsCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter) bool {
|
2018-07-11 19:40:06 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-03-04 16:45:03 +01:00
|
|
|
func (c *disposeCommand) String() string {
|
|
|
|
return fmt.Sprintf("dispose: target: %p", c.target)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2018-10-31 19:28:51 +01:00
|
|
|
if c.target.texture != *new(opengl.Texture) {
|
|
|
|
opengl.GetContext().DeleteTexture(c.target.texture)
|
2016-06-11 15:52:07 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2016-06-11 17:23:26 +02:00
|
|
|
|
2018-03-04 15:35:14 +01:00
|
|
|
func (c *disposeCommand) NumVertices() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
func (c *disposeCommand) NumIndices() int {
|
2018-06-03 08:16:30 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-03-18 11:58:32 +01:00
|
|
|
func (c *disposeCommand) AddNumVertices(n int) {
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
func (c *disposeCommand) AddNumIndices(n int) {
|
2018-06-03 08:16:30 +02:00
|
|
|
}
|
|
|
|
|
2018-10-28 12:42:57 +01:00
|
|
|
func (c *disposeCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter) bool {
|
2018-03-18 11:58:32 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-03-09 03:03:55 +01:00
|
|
|
func checkSize(width, height int) {
|
|
|
|
if width < 1 {
|
|
|
|
panic(fmt.Sprintf("graphics: width (%d) must be equal or more than 1.", width))
|
|
|
|
}
|
|
|
|
if height < 1 {
|
|
|
|
panic(fmt.Sprintf("graphics: height (%d) must be equal or more than 1.", height))
|
|
|
|
}
|
2018-03-09 03:03:55 +01:00
|
|
|
m := MaxImageSize()
|
|
|
|
if width > m {
|
|
|
|
panic(fmt.Sprintf("graphics: width (%d) must be less than or equal to %d", width, m))
|
2018-03-09 03:03:55 +01:00
|
|
|
}
|
2018-03-09 03:03:55 +01:00
|
|
|
if height > m {
|
|
|
|
panic(fmt.Sprintf("graphics: height (%d) must be less than or equal to %d", height, m))
|
2018-03-09 03:03:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-04 16:45:03 +01:00
|
|
|
func (c *newImageCommand) String() string {
|
|
|
|
return fmt.Sprintf("new-image: result: %p, width: %d, height: %d", c.result, c.width, c.height)
|
|
|
|
}
|
|
|
|
|
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)
|
2018-03-09 03:03:55 +01:00
|
|
|
checkSize(w, h)
|
2018-10-31 19:28:51 +01:00
|
|
|
t, err := opengl.GetContext().NewTexture(w, h)
|
2016-06-11 17:23:26 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-10-31 19:28:51 +01:00
|
|
|
c.result.texture = t
|
2016-06-11 17:23:26 +02:00
|
|
|
return nil
|
|
|
|
}
|
2016-06-17 21:46:33 +02:00
|
|
|
|
2018-03-04 15:35:14 +01:00
|
|
|
func (c *newImageCommand) NumVertices() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
func (c *newImageCommand) NumIndices() int {
|
2018-06-03 08:16:30 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-03-18 11:58:32 +01:00
|
|
|
func (c *newImageCommand) AddNumVertices(n int) {
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
func (c *newImageCommand) AddNumIndices(n int) {
|
2018-06-03 08:16:30 +02:00
|
|
|
}
|
|
|
|
|
2018-10-28 12:42:57 +01:00
|
|
|
func (c *newImageCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter) bool {
|
2018-03-18 11:58:32 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-03-04 16:45:03 +01:00
|
|
|
func (c *newScreenFramebufferImageCommand) String() string {
|
|
|
|
return fmt.Sprintf("new-screen-framebuffer-image: result: %p, width: %d, height: %d", c.result, c.width, c.height)
|
|
|
|
}
|
|
|
|
|
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 {
|
2018-03-09 03:03:55 +01:00
|
|
|
checkSize(c.width, c.height)
|
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
|
|
|
|
}
|
2018-03-04 15:35:14 +01:00
|
|
|
|
|
|
|
func (c *newScreenFramebufferImageCommand) NumVertices() int {
|
|
|
|
return 0
|
|
|
|
}
|
2018-03-18 11:58:32 +01:00
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
func (c *newScreenFramebufferImageCommand) NumIndices() int {
|
2018-06-03 08:16:30 +02:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-03-18 11:58:32 +01:00
|
|
|
func (c *newScreenFramebufferImageCommand) AddNumVertices(n int) {
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:06:40 +02:00
|
|
|
func (c *newScreenFramebufferImageCommand) AddNumIndices(n int) {
|
2018-06-03 08:16:30 +02:00
|
|
|
}
|
|
|
|
|
2018-10-28 12:42:57 +01:00
|
|
|
func (c *newScreenFramebufferImageCommand) CanMerge(dst, src *Image, color *affine.ColorM, mode graphics.CompositeMode, filter graphics.Filter) bool {
|
2018-03-18 11:58:32 +01:00
|
|
|
return false
|
|
|
|
}
|
2018-10-29 17:27:31 +01:00
|
|
|
|
2018-10-31 19:02:08 +01:00
|
|
|
// ResetGraphicsDriverState resets or initializes the current graphics driver state.
|
|
|
|
func ResetGraphicsDriverState() error {
|
|
|
|
return opengl.Reset()
|
2018-10-29 17:27:31 +01:00
|
|
|
}
|