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"
2019-08-27 15:33:14 +02:00
"math"
2020-07-17 18:09:58 +02:00
"strings"
2016-06-02 19:34:34 +02:00
2020-10-03 19:35:13 +02:00
"github.com/hajimehoshi/ebiten/v2/internal/affine"
2020-11-24 14:22:45 +01:00
"github.com/hajimehoshi/ebiten/v2/internal/debug"
2020-10-03 19:35:13 +02:00
"github.com/hajimehoshi/ebiten/v2/internal/driver"
"github.com/hajimehoshi/ebiten/v2/internal/graphics"
"github.com/hajimehoshi/ebiten/v2/internal/shaderir"
2016-06-02 19:34:34 +02:00
)
2019-03-30 14:26:27 +01:00
var theGraphicsDriver driver . Graphics
2019-03-30 14:13:48 +01:00
2019-03-30 14:26:27 +01:00
func SetGraphicsDriver ( driver driver . Graphics ) {
2019-03-30 14:13:48 +01:00
theGraphicsDriver = driver
}
2019-05-26 12:08:46 +02:00
func NeedsRestoring ( ) bool {
2019-05-26 14:40:10 +02:00
if theGraphicsDriver == nil {
2019-05-26 15:15:31 +02:00
// This happens on initialization.
// Return true for fail-safe
return true
2019-05-26 14:40:10 +02:00
}
2019-05-26 12:08:46 +02:00
return theGraphicsDriver . NeedsRestoring ( )
}
2017-09-11 20:12:17 +02:00
// command represents a drawing command.
//
2019-04-22 16:12:03 +02:00
// A command for drawing that is created when Image functions are called like DrawTriangles,
2017-09-11 20:12:17 +02:00
// 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
2018-11-11 15:51:16 +01:00
Exec ( indexOffset int ) error
2016-06-02 19:34:34 +02:00
}
2019-06-21 20:50:56 +02:00
type size struct {
width float32
height float32
}
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
2019-06-26 04:45:06 +02:00
srcSizes [ ] size
2019-06-21 20:50:56 +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.
2020-05-24 09:43:08 +02:00
func ( q * commandQueue ) appendVertices ( vertices [ ] float32 , src * Image ) {
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 ) ... )
2019-06-26 04:45:06 +02:00
q . srcSizes = append ( q . srcSizes , make ( [ ] size , n / graphics . VertexFloatNum ) ... )
2017-01-18 17:26:56 +01:00
}
2018-06-16 18:09:05 +02:00
copy ( q . vertices [ q . nvertices : ] , vertices )
2019-09-27 19:31:04 +02:00
2019-09-28 16:09:20 +02:00
n := len ( vertices ) / graphics . VertexFloatNum
base := q . nvertices / graphics . VertexFloatNum
2020-05-24 09:43:08 +02:00
width := float32 ( 1 )
height := float32 ( 1 )
2020-08-10 18:38:00 +02:00
// src is nil when a shader is used and there are no specified images.
2020-05-24 09:43:08 +02:00
if src != nil {
w , h := src . InternalSize ( )
width = float32 ( w )
height = float32 ( h )
}
2019-09-27 19:31:04 +02:00
for i := 0 ; i < n ; i ++ {
idx := base + i
2019-06-26 04:45:06 +02:00
q . srcSizes [ idx ] . width = width
q . srcSizes [ idx ] . height = height
2019-06-21 20:50:56 +02:00
}
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
}
2019-04-22 16:12:03 +02:00
// EnqueueDrawTrianglesCommand enqueues a drawing-image command.
2021-07-02 12:26:09 +02:00
func ( q * commandQueue ) EnqueueDrawTrianglesCommand ( dst * Image , srcs [ graphics . ShaderImageNum ] * Image , offsets [ graphics . ShaderImageNum - 1 ] [ 2 ] float32 , vertices [ ] float32 , indices [ ] uint16 , color * affine . ColorM , mode driver . CompositeMode , filter driver . Filter , address driver . Address , dstRegion , srcRegion driver . Region , shader * Shader , uniforms [ ] interface { } , evenOdd bool ) {
2018-11-06 17:49:45 +01:00
if len ( indices ) > graphics . IndicesNum {
2019-04-22 16:12:03 +02:00
panic ( fmt . Sprintf ( "graphicscommand: len(indices) must be <= graphics.IndicesNum but not at EnqueueDrawTrianglesCommand: len(indices): %d, graphics.IndicesNum: %d" , len ( indices ) , graphics . IndicesNum ) )
2018-06-03 11:48:14 +02:00
}
2018-06-09 21:55:44 +02:00
split := false
2018-11-06 17:49:45 +01:00
if q . tmpNumIndices + len ( indices ) > graphics . 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
}
2020-07-17 18:09:58 +02:00
// Assume that all the image sizes are same.
2020-08-10 18:38:00 +02:00
// Assume that the images are packed from the front in the slice srcs.
q . appendVertices ( vertices , srcs [ 0 ] )
2018-06-10 10:06:40 +02:00
q . appendIndices ( indices , uint16 ( q . nextIndex ) )
2020-05-24 09:43:08 +02:00
q . nextIndex += len ( vertices ) / graphics . VertexFloatNum
2018-06-10 10:06:40 +02:00
q . tmpNumIndices += len ( indices )
2018-06-09 21:55:44 +02:00
2020-08-10 18:38:00 +02:00
if srcs [ 0 ] != nil {
w , h := srcs [ 0 ] . InternalSize ( )
2020-11-07 11:14:06 +01:00
srcRegion . X /= float32 ( w )
srcRegion . Y /= float32 ( h )
srcRegion . Width /= float32 ( w )
srcRegion . Height /= float32 ( h )
2020-07-18 12:56:22 +02:00
for i := range offsets {
offsets [ i ] [ 0 ] /= float32 ( w )
offsets [ i ] [ 1 ] /= float32 ( h )
}
2020-06-29 17:02:33 +02:00
}
2020-09-04 17:42:47 +02:00
// TODO: If dst is the screen, reorder the command to be the last.
if ! split && 0 < len ( q . commands ) {
// TODO: Pass offsets and uniforms when merging considers the shader.
2021-07-05 14:16:01 +02:00
if last , ok := q . commands [ len ( q . commands ) - 1 ] . ( * drawTrianglesCommand ) ; ok {
2021-07-05 12:35:34 +02:00
if last . CanMergeWithDrawTrianglesCommand ( dst , srcs , vertices , color , mode , filter , address , dstRegion , srcRegion , shader , evenOdd ) {
last . setVertices ( q . lastVertices ( len ( vertices ) + last . numVertices ( ) ) )
2021-07-05 14:16:01 +02:00
last . addNumIndices ( len ( indices ) )
return
}
2020-09-04 17:42:47 +02:00
}
}
2019-11-13 16:08:44 +01:00
c := & drawTrianglesCommand {
2020-11-07 11:14:06 +01:00
dst : dst ,
srcs : srcs ,
offsets : offsets ,
2021-07-05 12:35:34 +02:00
vertices : q . lastVertices ( len ( vertices ) ) ,
2020-11-07 11:14:06 +01:00
nindices : len ( indices ) ,
color : color ,
mode : mode ,
filter : filter ,
address : address ,
dstRegion : dstRegion ,
srcRegion : srcRegion ,
shader : shader ,
uniforms : uniforms ,
2021-07-02 12:26:09 +02:00
evenOdd : evenOdd ,
2019-11-13 16:08:44 +01:00
}
q . commands = append ( q . commands , c )
2017-05-02 15:45:09 +02:00
}
2021-07-05 12:35:34 +02:00
func ( q * commandQueue ) lastVertices ( n int ) [ ] float32 {
return q . vertices [ q . nvertices - n : q . nvertices ]
}
2019-05-08 04:58:02 +02:00
// Enqueue enqueues a drawing command other than a draw-triangles command.
2017-09-19 18:35:56 +02:00
//
2019-05-08 04:58:02 +02:00
// For a draw-triangles command, use EnqueueDrawTrianglesCommand.
2017-05-02 15:45:09 +02:00
func ( q * commandQueue ) Enqueue ( command command ) {
2019-04-12 17:22:11 +02:00
// TODO: If dst is the screen, reorder the command to be the last.
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.
2020-01-18 17:18:56 +01:00
func ( q * commandQueue ) Flush ( ) error {
2020-10-14 16:37:28 +02:00
return runOnMainThread ( func ( ) error {
2020-10-12 17:39:45 +02:00
return q . flush ( )
} )
}
// flush must be called the main thread.
func ( q * commandQueue ) flush ( ) error {
2020-04-22 17:51:25 +02:00
if len ( q . commands ) == 0 {
return nil
}
2018-06-10 10:06:40 +02:00
es := q . indices
2018-06-03 14:47:08 +02:00
vs := q . vertices
2020-11-24 14:22:45 +01:00
debug . Logf ( "--\nGraphics commands:\n" )
2019-04-20 08:17:59 +02:00
2019-06-21 21:47:48 +02:00
if theGraphicsDriver . HasHighPrecisionFloat ( ) {
2019-09-26 20:28:07 +02:00
n := q . nvertices / graphics . VertexFloatNum
for i := 0 ; i < n ; i ++ {
2019-06-26 04:45:06 +02:00
s := q . srcSizes [ i ]
2019-08-27 15:33:14 +02:00
2019-09-20 16:59:04 +02:00
// Convert pixels to texels.
vs [ i * graphics . VertexFloatNum + 2 ] /= s . width
vs [ i * graphics . VertexFloatNum + 3 ] /= s . height
2020-06-15 18:40:28 +02:00
// Avoid the center of the pixel, which is problematic (#929, #1171).
// Instead, align the vertices with about 1/3 pixels.
for idx := 0 ; idx < 2 ; idx ++ {
x := vs [ i * graphics . VertexFloatNum + idx ]
int := float32 ( math . Floor ( float64 ( x ) ) )
frac := x - int
switch {
case frac < 3.0 / 16.0 :
vs [ i * graphics . VertexFloatNum + idx ] = int
case frac < 8.0 / 16.0 :
vs [ i * graphics . VertexFloatNum + idx ] = int + 5.0 / 16.0
case frac < 13.0 / 16.0 :
vs [ i * graphics . VertexFloatNum + idx ] = int + 11.0 / 16.0
default :
vs [ i * graphics . VertexFloatNum + idx ] = int + 16.0 / 16.0
}
2019-08-27 15:33:14 +02:00
}
2019-06-21 21:47:48 +02:00
}
2019-10-19 09:28:53 +02:00
} else {
n := q . nvertices / graphics . VertexFloatNum
for i := 0 ; i < n ; i ++ {
s := q . srcSizes [ i ]
// Convert pixels to texels.
vs [ i * graphics . VertexFloatNum + 2 ] /= s . width
vs [ i * graphics . VertexFloatNum + 3 ] /= s . height
}
2019-06-21 20:50:56 +02:00
}
2020-05-29 22:19:49 +02:00
2019-04-20 08:17:59 +02:00
theGraphicsDriver . Begin ( )
2019-09-28 20:23:40 +02:00
cs := q . commands
for len ( cs ) > 0 {
2018-06-03 14:47:08 +02:00
nv := 0
ne := 0
nc := 0
2019-09-28 20:23:40 +02:00
for _ , c := range cs {
2021-07-05 14:16:01 +02:00
if dtc , ok := c . ( * drawTrianglesCommand ) ; ok {
if dtc . numIndices ( ) > graphics . IndicesNum {
panic ( fmt . Sprintf ( "graphicscommand: dtc.NumIndices() must be <= graphics.IndicesNum but not at Flush: dtc.NumIndices(): %d, graphics.IndicesNum: %d" , dtc . numIndices ( ) , graphics . IndicesNum ) )
}
if ne + dtc . numIndices ( ) > graphics . IndicesNum {
break
}
nv += dtc . numVertices ( )
ne += dtc . 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 {
2019-03-30 14:13:48 +01:00
theGraphicsDriver . SetVertices ( 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
}
2018-11-11 15:51:16 +01:00
indexOffset := 0
2019-09-28 20:23:40 +02:00
for _ , c := range cs [ : nc ] {
2018-11-11 15:51:16 +01:00
if err := c . Exec ( indexOffset ) ; err != nil {
2020-01-18 17:18:56 +01:00
return err
2016-07-16 12:17:57 +02:00
}
2020-11-24 14:22:45 +01:00
debug . Logf ( " %s\n" , c )
2018-11-11 15:51:16 +01:00
// TODO: indexOffset should be reset if the command type is different
2018-05-27 17:49:16 +02:00
// from the previous one. This fix is needed when another drawing command is
2019-04-22 16:12:03 +02:00
// introduced than drawTrianglesCommand.
2021-07-05 14:16:01 +02:00
if dtc , ok := c . ( * drawTrianglesCommand ) ; ok {
indexOffset += dtc . numIndices ( )
}
2016-07-16 12:17:57 +02:00
}
2019-09-28 20:23:40 +02:00
cs = cs [ nc : ]
2016-06-02 19:34:34 +02:00
}
2019-04-20 08:17:59 +02:00
theGraphicsDriver . End ( )
2019-09-26 17:34:55 +02:00
q . commands = q . commands [ : 0 ]
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
2020-01-18 17:18:56 +01:00
return nil
2016-06-02 19:34:34 +02:00
}
2017-09-19 18:35:56 +02:00
// FlushCommands flushes the command queue.
2020-01-18 17:18:56 +01:00
func FlushCommands ( ) error {
return theCommandQueue . Flush ( )
2016-06-10 22:48:09 +02:00
}
2019-04-22 16:12:03 +02:00
// drawTrianglesCommand represents a drawing command to draw an image on another image.
type drawTrianglesCommand struct {
2020-11-07 11:14:06 +01:00
dst * Image
srcs [ graphics . ShaderImageNum ] * Image
offsets [ graphics . ShaderImageNum - 1 ] [ 2 ] float32
2021-07-05 12:35:34 +02:00
vertices [ ] float32
2020-11-07 11:14:06 +01:00
nindices int
color * affine . ColorM
mode driver . CompositeMode
filter driver . Filter
address driver . Address
dstRegion driver . Region
srcRegion driver . Region
shader * Shader
uniforms [ ] interface { }
2021-07-02 12:26:09 +02:00
evenOdd bool
2016-06-02 19:34:34 +02:00
}
2019-04-22 16:12:03 +02:00
func ( c * drawTrianglesCommand ) String ( ) string {
2019-07-19 16:18:07 +02:00
mode := ""
switch c . mode {
case driver . CompositeModeSourceOver :
mode = "source-over"
case driver . CompositeModeClear :
mode = "clear"
case driver . CompositeModeCopy :
mode = "copy"
case driver . CompositeModeDestination :
mode = "destination"
case driver . CompositeModeDestinationOver :
mode = "destination-over"
case driver . CompositeModeSourceIn :
mode = "source-in"
case driver . CompositeModeDestinationIn :
mode = "destination-in"
case driver . CompositeModeSourceOut :
mode = "source-out"
case driver . CompositeModeDestinationOut :
mode = "destination-out"
case driver . CompositeModeSourceAtop :
mode = "source-atop"
case driver . CompositeModeDestinationAtop :
mode = "destination-atop"
case driver . CompositeModeXor :
mode = "xor"
case driver . CompositeModeLighter :
mode = "lighter"
2021-03-14 18:14:03 +01:00
case driver . CompositeModeMultiply :
mode = "multiply"
2019-07-19 16:18:07 +02:00
default :
panic ( fmt . Sprintf ( "graphicscommand: invalid composite mode: %d" , c . mode ) )
}
2020-05-17 20:45:58 +02:00
dst := fmt . Sprintf ( "%d" , c . dst . id )
if c . dst . screen {
dst += " (screen)"
}
if c . shader != nil {
return fmt . Sprintf ( "draw-triangles: dst: %s, shader, num of indices: %d, mode %s" , dst , c . nindices , mode )
}
2019-07-19 16:18:07 +02:00
filter := ""
switch c . filter {
case driver . FilterNearest :
filter = "nearest"
case driver . FilterLinear :
filter = "linear"
case driver . FilterScreen :
filter = "screen"
default :
panic ( fmt . Sprintf ( "graphicscommand: invalid filter: %d" , c . filter ) )
}
address := ""
switch c . address {
case driver . AddressClampToZero :
address = "clamp_to_zero"
case driver . AddressRepeat :
address = "repeat"
2020-06-24 17:47:18 +02:00
case driver . AddressUnsafe :
address = "unsafe"
2019-07-19 16:18:07 +02:00
default :
panic ( fmt . Sprintf ( "graphicscommand: invalid address: %d" , c . address ) )
}
2020-07-17 18:09:58 +02:00
var srcstrs [ graphics . ShaderImageNum ] string
for i , src := range c . srcs {
if src == nil {
srcstrs [ i ] = "(nil)"
continue
}
srcstrs [ i ] = fmt . Sprintf ( "%d" , src . id )
if src . screen {
srcstrs [ i ] += " (screen)"
}
2019-07-20 07:29:04 +02:00
}
2020-11-26 17:48:17 +01:00
r := fmt . Sprintf ( "(x:%d, y:%d, width:%d, height:%d)" ,
int ( c . dstRegion . X ) , int ( c . dstRegion . Y ) , int ( c . dstRegion . Width ) , int ( c . dstRegion . Height ) )
2021-07-06 18:54:22 +02:00
return fmt . Sprintf ( "draw-triangles: dst: %s <- src: [%s], dst region: %s, num of indices: %d, colorm: %v, mode: %s, filter: %s, address: %s, even-odd: %t" , dst , strings . Join ( srcstrs [ : ] , ", " ) , r , c . nindices , c . color , mode , filter , address , c . evenOdd )
2018-03-04 16:45:03 +01:00
}
2019-04-22 16:12:03 +02:00
// Exec executes the drawTrianglesCommand.
func ( c * drawTrianglesCommand ) Exec ( indexOffset int ) error {
2018-11-05 19:44:43 +01:00
// TODO: Is it ok not to bind any framebuffer here?
2018-06-10 10:06:40 +02:00
if c . nindices == 0 {
2016-06-03 05:41:18 +02:00
return nil
}
2018-11-05 19:44:43 +01:00
2021-07-01 08:41:25 +02:00
var shaderID driver . ShaderID = driver . InvalidShaderID
var imgs [ graphics . ShaderImageNum ] driver . ImageID
2020-05-17 20:45:58 +02:00
if c . shader != nil {
2021-07-01 08:41:25 +02:00
shaderID = c . shader . shader . ID ( )
2020-07-17 18:09:58 +02:00
for i , src := range c . srcs {
if src == nil {
2021-07-01 06:56:42 +02:00
imgs [ i ] = driver . InvalidImageID
2020-07-17 18:09:58 +02:00
continue
}
imgs [ i ] = src . image . ID ( )
2020-05-24 19:31:54 +02:00
}
2021-07-01 08:41:25 +02:00
} else {
imgs [ 0 ] = c . srcs [ 0 ] . image . ID ( )
2018-11-05 19:44:43 +01:00
}
2021-07-01 08:41:25 +02:00
2021-07-02 12:26:09 +02:00
return theGraphicsDriver . DrawTriangles ( c . dst . image . ID ( ) , imgs , c . offsets , shaderID , c . nindices , indexOffset , c . mode , c . color , c . filter , c . address , c . dstRegion , c . srcRegion , c . uniforms , c . evenOdd )
2016-06-02 19:34:34 +02:00
}
2021-07-05 14:16:01 +02:00
func ( c * drawTrianglesCommand ) numVertices ( ) int {
2021-07-05 12:35:34 +02:00
return len ( c . vertices )
2018-03-04 15:35:14 +01:00
}
2021-07-05 14:16:01 +02:00
func ( c * drawTrianglesCommand ) numIndices ( ) int {
2018-06-10 10:06:40 +02:00
return c . nindices
2018-06-03 08:16:30 +02:00
}
2021-07-05 12:35:34 +02:00
func ( c * drawTrianglesCommand ) setVertices ( vertices [ ] float32 ) {
c . vertices = vertices
2018-03-18 11:58:32 +01:00
}
2021-07-05 14:16:01 +02:00
func ( c * drawTrianglesCommand ) addNumIndices ( n int ) {
2018-06-10 10:06:40 +02:00
c . nindices += n
2018-06-03 08:16:30 +02:00
}
2019-11-13 16:08:44 +01:00
// CanMergeWithDrawTrianglesCommand returns a boolean value indicating whether the other drawTrianglesCommand can be merged
2019-04-22 16:12:03 +02:00
// with the drawTrianglesCommand c.
2021-07-05 12:35:34 +02:00
func ( c * drawTrianglesCommand ) CanMergeWithDrawTrianglesCommand ( dst * Image , srcs [ graphics . ShaderImageNum ] * Image , vertices [ ] float32 , color * affine . ColorM , mode driver . CompositeMode , filter driver . Filter , address driver . Address , dstRegion , srcRegion driver . Region , shader * Shader , evenOdd bool ) bool {
2020-05-17 20:45:58 +02:00
// If a shader is used, commands are not merged.
//
// TODO: Merge shader commands considering uniform variables.
if c . shader != nil || shader != nil {
return false
}
2017-05-02 15:45:09 +02:00
if c . dst != dst {
2016-10-25 04:53:00 +02:00
return false
}
2020-07-17 18:09:58 +02:00
if c . srcs != srcs {
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
}
2018-12-23 19:00:00 +01:00
if c . address != address {
return false
}
2020-11-07 11:14:06 +01:00
if c . dstRegion != dstRegion {
return false
}
if c . srcRegion != srcRegion {
2020-06-29 17:02:33 +02:00
return false
}
2021-07-05 11:08:52 +02:00
if c . evenOdd || evenOdd {
2021-07-05 12:35:34 +02:00
if c . evenOdd && evenOdd {
2021-07-05 16:32:19 +02:00
return ! mightOverlapDstRegions ( c . vertices , vertices )
2021-07-05 12:35:34 +02:00
}
2021-07-02 12:26:09 +02:00
return false
}
2016-10-25 04:53:00 +02:00
return true
}
2021-07-05 12:35:34 +02:00
var (
posInf32 = float32 ( math . Inf ( 1 ) )
negInf32 = float32 ( math . Inf ( - 1 ) )
)
func dstRegionFromVertices ( vertices [ ] float32 ) ( minX , minY , maxX , maxY float32 ) {
minX = posInf32
minY = posInf32
maxX = negInf32
maxY = negInf32
for i := 0 ; i < len ( vertices ) / graphics . VertexFloatNum ; i ++ {
x := vertices [ graphics . VertexFloatNum * i ]
y := vertices [ graphics . VertexFloatNum * i + 1 ]
if x < minX {
minX = x
}
if y < minY {
minY = y
}
if maxX < x {
maxX = x
}
if maxY < y {
maxY = y
}
}
return
}
2021-07-05 16:32:19 +02:00
func mightOverlapDstRegions ( vertices1 , vertices2 [ ] float32 ) bool {
2021-07-05 12:35:34 +02:00
minX1 , minY1 , maxX1 , maxY1 := dstRegionFromVertices ( vertices1 )
minX2 , minY2 , maxX2 , maxY2 := dstRegionFromVertices ( vertices2 )
const mergin = 1
return minX1 < maxX2 + mergin && minX2 < maxX1 + mergin && minY1 < maxY2 + mergin && minY2 < maxY1 + mergin
}
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 {
2019-11-21 15:42:46 +01:00
dst * Image
args [ ] * driver . ReplacePixelsArgs
2016-06-02 19:34:34 +02:00
}
2018-03-04 16:45:03 +01:00
func ( c * replacePixelsCommand ) String ( ) string {
2019-11-21 15:42:46 +01:00
return fmt . Sprintf ( "replace-pixels: dst: %d, len(args): %d" , c . dst . id , len ( c . args ) )
2018-03-04 16:45:03 +01:00
}
2017-09-19 18:35:56 +02:00
// Exec executes the replacePixelsCommand.
2018-11-11 15:51:16 +01:00
func ( c * replacePixelsCommand ) Exec ( indexOffset int ) error {
2019-11-21 15:42:46 +01:00
c . dst . image . ReplacePixels ( c . args )
2016-06-02 19:34:34 +02:00
return nil
}
2016-06-11 15:52:07 +02:00
2018-07-11 19:40:06 +02:00
type pixelsCommand struct {
result [ ] byte
img * Image
}
// Exec executes a pixelsCommand.
2018-11-11 15:51:16 +01:00
func ( c * pixelsCommand ) Exec ( indexOffset int ) error {
2018-11-04 11:06:13 +01:00
p , err := c . img . image . Pixels ( )
2018-07-11 19:40:06 +02:00
if err != nil {
return err
}
c . result = p
return nil
}
2018-03-04 16:45:03 +01:00
func ( c * pixelsCommand ) String ( ) string {
2019-07-19 16:18:07 +02:00
return fmt . Sprintf ( "pixels: image: %d" , c . img . id )
2018-03-04 16:45:03 +01:00
}
2020-05-17 20:45:58 +02:00
// disposeImageCommand represents a command to dispose an image.
type disposeImageCommand struct {
2016-06-12 15:44:23 +02:00
target * Image
2016-06-11 15:52:07 +02:00
}
2020-05-17 20:45:58 +02:00
func ( c * disposeImageCommand ) String ( ) string {
return fmt . Sprintf ( "dispose-image: target: %d" , c . target . id )
2018-03-04 16:45:03 +01:00
}
2020-05-17 20:45:58 +02:00
// Exec executes the disposeImageCommand.
func ( c * disposeImageCommand ) Exec ( indexOffset int ) error {
2018-11-12 15:44:13 +01:00
c . target . image . Dispose ( )
2016-06-11 15:52:07 +02:00
return nil
}
2016-06-11 17:23:26 +02:00
2020-05-17 20:45:58 +02:00
// disposeShaderCommand represents a command to dispose a shader.
type disposeShaderCommand struct {
target * Shader
}
func ( c * disposeShaderCommand ) String ( ) string {
return fmt . Sprintf ( "dispose-shader: target" )
}
// Exec executes the disposeShaderCommand.
func ( c * disposeShaderCommand ) Exec ( indexOffset int ) error {
c . target . shader . Dispose ( )
return nil
}
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-04 16:45:03 +01:00
func ( c * newImageCommand ) String ( ) string {
2019-07-19 16:18:07 +02:00
return fmt . Sprintf ( "new-image: result: %d, width: %d, height: %d" , c . result . id , c . width , c . height )
2018-03-04 16:45:03 +01:00
}
2017-09-19 18:35:56 +02:00
// Exec executes a newImageCommand.
2018-11-11 15:51:16 +01:00
func ( c * newImageCommand ) Exec ( indexOffset int ) error {
2019-03-30 14:13:48 +01:00
i , err := theGraphicsDriver . NewImage ( c . width , c . height )
2016-06-11 17:23:26 +02:00
if err != nil {
return err
}
2018-11-04 11:36:33 +01:00
c . result . image = i
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
}
2018-03-04 16:45:03 +01:00
func ( c * newScreenFramebufferImageCommand ) String ( ) string {
2019-07-19 16:18:07 +02:00
return fmt . Sprintf ( "new-screen-framebuffer-image: result: %d, width: %d, height: %d" , c . result . id , c . width , c . height )
2018-03-04 16:45:03 +01:00
}
2017-09-19 18:35:56 +02:00
// Exec executes a newScreenFramebufferImageCommand.
2018-11-11 15:51:16 +01:00
func ( c * newScreenFramebufferImageCommand ) Exec ( indexOffset int ) error {
2018-11-11 15:57:23 +01:00
var err error
2019-03-30 14:13:48 +01:00
c . result . image , err = theGraphicsDriver . NewScreenFramebufferImage ( c . width , c . height )
2018-11-11 15:57:23 +01:00
return err
2016-06-17 21:46:33 +02:00
}
2018-03-04 15:35:14 +01:00
2020-05-17 20:45:58 +02:00
// newShaderCommand is a command to create a shader.
type newShaderCommand struct {
result * Shader
ir * shaderir . Program
}
func ( c * newShaderCommand ) String ( ) string {
2021-06-27 16:20:27 +02:00
return fmt . Sprintf ( "new-shader" )
2020-05-17 20:45:58 +02:00
}
// Exec executes a newShaderCommand.
func ( c * newShaderCommand ) Exec ( indexOffset int ) error {
var err error
c . result . shader , err = theGraphicsDriver . NewShader ( c . ir )
return err
}
2021-07-07 06:58:42 +02:00
// InitializeGraphicsDriverState initialize the current graphics driver state.
func InitializeGraphicsDriverState ( ) error {
return runOnMainThread ( func ( ) error {
return theGraphicsDriver . Initialize ( )
} )
}
// ResetGraphicsDriverState resets the current graphics driver state.
2018-10-31 19:02:08 +01:00
func ResetGraphicsDriverState ( ) error {
2020-10-14 16:37:28 +02:00
return runOnMainThread ( func ( ) error {
2020-10-12 17:39:45 +02:00
return theGraphicsDriver . Reset ( )
} )
2018-10-29 17:27:31 +01:00
}
2020-10-12 18:36:40 +02:00
// MaxImageSize returns the maximum size of an image.
func MaxImageSize ( ) int {
2020-10-12 17:39:45 +02:00
var size int
2020-10-14 16:37:28 +02:00
_ = runOnMainThread ( func ( ) error {
2020-10-12 17:39:45 +02:00
size = theGraphicsDriver . MaxImageSize ( )
return nil
} )
return size
2020-10-12 18:36:40 +02:00
}