Skip to content

Commit

Permalink
internal/graphicscommand: bug fix: compile error
Browse files Browse the repository at this point in the history
Updates #2391
Updates #2423
  • Loading branch information
hajimehoshi committed Oct 30, 2022
1 parent 13d28f5 commit b983014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/graphicscommand/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ func (q *commandQueue) flush(graphicsDriver graphicsdriver.Graphics) error {
// FlushCommands flushes the command queue and present the screen if needed.
func FlushCommands(graphicsDriver graphicsdriver.Graphics, endFrame bool) error {
resolveImages()
return theCommandQueue.Flush(graphicsDriver, endFrame)
return theCommandQueue.Flush(graphicsDriver)
}

// drawTrianglesCommand represents a drawing command to draw an image on another image.
Expand Down

0 comments on commit b983014

Please sign in to comment.