love.graphics.flushBatch

Available since LÖVE 11.0
This function is not supported in earlier versions.

Immediately renders any pending automatically batched draws.

LÖVE will call this function internally as needed when most state is changed, so it is not necessary to manually call it.

The current batch will be automatically flushed by love.graphics state changes (except for the transform stack and the current color), as well as Shader:send and methods on Textures which change their state. Using a different Image in consecutive love.graphics.draw calls will also flush the current batch.

SpriteBatches, ParticleSystems, Meshes, and Text objects do their own batching and do not affect automatic batching of other draws, aside from flushing the current batch when they're drawn.

Function

Synopsis

love.graphics.flushBatch( )

Arguments

None.

Returns

Nothing.

See Also


Other Languages