Difference between revisions of "love.graphics.present"

(add new func)
 
m (fixed typo)
Line 1: Line 1:
 
Displays the results of drawing operations on the screen.
 
Displays the results of drawing operations on the screen.
  
This function is used when writing your own [[love.run | love.run]] function. It presents all the results of your drawing operation on the screen. See the example in love.run for a typical use of this function.
+
This function is used when writing your own [[love.run | 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 ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===

Revision as of 11:46, 28 February 2010

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