Difference between revisions of "love.graphics.present"

m (fixed typo)
(add counterpart: love.graphics.clear; add link to love.run.)
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 operations 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 ===
Line 12: Line 12:
 
Nothing.
 
Nothing.
 
== See Also ==
 
== See Also ==
 +
* [[love.graphics.clear]]
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Displays the results of drawing operations on the screen.}}
 
{{#set:Description=Displays the results of drawing operations on the screen.}}

Revision as of 14:07, 13 August 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