Difference between revisions of "love.graphics.present"

m
Line 5: Line 5:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
love.graphics.present ( )
+
love.graphics.present( )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===

Revision as of 07:12, 18 October 2012

Displays the results of drawing operations on the screen.

This function is used when writing your own love.run function. It presents all the results of your drawing operations on the screen. See the example in love.run for a typical use of this function.

Function

Synopsis

love.graphics.present( )

Arguments

None.

Returns

Nothing.

See Also


Other Languages