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"
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
2018-11-11 15:51:16 +01:00
Exec ( indexOffset 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-12-23 19:00:00 +01:00
CanMerge ( dst , src * Image , color * affine . ColorM , mode graphics . CompositeMode , filter graphics . Filter , address graphics . Address ) 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-12-23 19:00:00 +01:00
func ( q * commandQueue ) doEnqueueDrawImageCommand ( dst , src * Image , nvertices , nindices int , color * affine . ColorM , mode graphics . CompositeMode , filter graphics . Filter , address graphics . Address , forceNewCommand bool ) {
2018-11-06 17:49:45 +01:00
if nindices > graphics . IndicesNum {
2019-02-07 09:19:24 +01:00
panic ( fmt . Sprintf ( "graphicscommand: nindices must be <= graphics.IndicesNum but not at doEnqueueDrawImageCommand: nindices: %d, graphics.IndicesNum: %d" , nindices , graphics . IndicesNum ) )
2018-06-03 14:47:08 +02:00
}
if ! forceNewCommand && 0 < len ( q . commands ) {
2018-12-23 19:00:00 +01:00
if last := q . commands [ len ( q . commands ) - 1 ] ; last . CanMerge ( dst , src , color , mode , filter , address ) {
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 ,
2018-12-23 19:00:00 +01:00
address : address ,
2018-06-03 14:47:08 +02:00
}
q . commands = append ( q . commands , c )
}
2017-09-18 18:37:24 +02:00
// EnqueueDrawImageCommand enqueues a drawing-image command.
2018-12-23 19:00:00 +01:00
func ( q * commandQueue ) EnqueueDrawImageCommand ( dst , src * Image , vertices [ ] float32 , indices [ ] uint16 , color * affine . ColorM , mode graphics . CompositeMode , filter graphics . Filter , address graphics . Address ) {
2018-11-06 17:49:45 +01:00
if len ( indices ) > graphics . IndicesNum {
2019-02-07 09:19:24 +01:00
panic ( fmt . Sprintf ( "graphicscommand: len(indices) must be <= graphics.IndicesNum but not at EnqueueDrawImageCommand: 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
}
q . appendVertices ( vertices )
2018-06-10 10:06:40 +02:00
q . appendIndices ( indices , uint16 ( q . nextIndex ) )
2018-11-05 18:34:52 +01: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
2018-12-23 19:00:00 +01:00
q . doEnqueueDrawImageCommand ( dst , src , len ( vertices ) , len ( indices ) , color , mode , filter , address , 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-11-06 17:49:45 +01:00
if c . NumIndices ( ) > graphics . IndicesNum {
2019-02-07 09:19:24 +01:00
panic ( fmt . Sprintf ( "graphicscommand: c.NumIndices() must be <= graphics.IndicesNum but not at Flush: c.NumIndices(): %d, graphics.IndicesNum: %d" , c . NumIndices ( ) , graphics . IndicesNum ) )
2018-06-03 14:47:08 +02:00
}
2018-11-06 17:49:45 +01:00
if ne + c . NumIndices ( ) > graphics . 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-11-12 16:00:10 +01:00
Driver ( ) . 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
2018-06-03 14:47:08 +02:00
for _ , c := range q . commands [ : nc ] {
2018-11-11 15:51:16 +01:00
if err := c . Exec ( indexOffset ) ; 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-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
// introduced than drawImageCommand.
2018-11-11 15:51:16 +01:00
indexOffset += c . NumIndices ( )
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).
2018-11-12 16:00:10 +01:00
Driver ( ) . 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
2018-12-23 19:00:00 +01:00
address graphics . Address
2016-06-02 19:34:34 +02:00
}
2018-03-04 16:45:03 +01:00
func ( c * drawImageCommand ) String ( ) string {
2019-02-10 06:27:49 +01:00
return fmt . Sprintf ( "draw-image: dst: %p <- src: %p, colorm: %v, mode %d, filter: %d, address: %d" , c . dst , c . src , c . color , c . mode , c . filter , c . address )
2018-03-04 16:45:03 +01:00
}
2017-09-19 18:35:56 +02:00
// Exec executes the drawImageCommand.
2018-11-11 15:51:16 +01:00
func ( c * drawImageCommand ) 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
c . dst . image . SetAsDestination ( )
c . src . image . SetAsSource ( )
2018-12-23 19:00:00 +01:00
if err := Driver ( ) . Draw ( c . nindices , indexOffset , c . mode , c . color , c . filter , c . address ) ; err != nil {
2018-11-05 19:44:43 +01:00
return err
}
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-12-23 19:00:00 +01:00
func ( c * drawImageCommand ) CanMerge ( dst , src * Image , color * affine . ColorM , mode graphics . CompositeMode , filter graphics . Filter , address graphics . Address ) 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
}
2018-12-23 19:00:00 +01:00
if c . address != address {
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.
2018-11-11 15:51:16 +01:00
func ( c * replacePixelsCommand ) Exec ( indexOffset int ) error {
2018-11-10 17:35:10 +01:00
c . dst . image . ReplacePixels ( 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-12-23 19:00:00 +01:00
func ( c * replacePixelsCommand ) CanMerge ( dst , src * Image , color * affine . ColorM , mode graphics . CompositeMode , filter graphics . Filter , address graphics . Address ) bool {
2018-03-18 11:58:32 +01:00
return false
}
2019-02-02 18:39:36 +01:00
type copyPixelsCommand struct {
dst * Image
src * Image
}
func ( c * copyPixelsCommand ) String ( ) string {
return fmt . Sprintf ( "copy-pixels: dst: %p <- src: %p" , c . dst , c . src )
}
func ( c * copyPixelsCommand ) Exec ( indexOffset int ) error {
p , err := c . src . image . Pixels ( )
if err != nil {
return err
}
if c . dst . width < c . src . width || c . dst . height < c . src . height {
return fmt . Errorf ( "graphicscommand: the destination size (%d, %d) must include the source size (%d, %d)" , c . dst . width , c . dst . height , c . src . width , c . src . height )
}
c . dst . image . ReplacePixels ( p , 0 , 0 , c . src . width , c . src . height )
return nil
}
func ( c * copyPixelsCommand ) NumVertices ( ) int {
return 0
}
func ( c * copyPixelsCommand ) NumIndices ( ) int {
return 0
}
func ( c * copyPixelsCommand ) AddNumVertices ( n int ) {
}
func ( c * copyPixelsCommand ) AddNumIndices ( n int ) {
}
func ( c * copyPixelsCommand ) CanMerge ( dst , src * Image , color * affine . ColorM , mode graphics . CompositeMode , filter graphics . Filter , address graphics . Address ) bool {
return false
}
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 {
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-12-23 19:00:00 +01:00
func ( c * pixelsCommand ) CanMerge ( dst , src * Image , color * affine . ColorM , mode graphics . CompositeMode , filter graphics . Filter , address graphics . Address ) 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.
2018-11-11 15:51:16 +01:00
func ( c * disposeCommand ) 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
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-12-23 19:00:00 +01:00
func ( c * disposeCommand ) CanMerge ( dst , src * Image , color * affine . ColorM , mode graphics . CompositeMode , filter graphics . Filter , address graphics . Address ) 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-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.
2018-11-11 15:51:16 +01:00
func ( c * newImageCommand ) Exec ( indexOffset int ) error {
2018-11-12 16:00:10 +01:00
i , err := Driver ( ) . 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
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-12-23 19:00:00 +01:00
func ( c * newImageCommand ) CanMerge ( dst , src * Image , color * affine . ColorM , mode graphics . CompositeMode , filter graphics . Filter , address graphics . Address ) 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.
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
2018-11-12 16:00:10 +01:00
c . result . image , err = Driver ( ) . 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
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-12-23 19:00:00 +01:00
func ( c * newScreenFramebufferImageCommand ) CanMerge ( dst , src * Image , color * affine . ColorM , mode graphics . CompositeMode , filter graphics . Filter , address graphics . Address ) 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 {
2018-11-12 16:00:10 +01:00
return Driver ( ) . Reset ( )
2018-10-29 17:27:31 +01:00
}