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 ===
<source lang="lua">
love.graphics.present( )
</source>

=== Arguments ===
None.

=== Returns ===
Nothing.

== Notes ==
* If [[love.window.setMode]] has <code>vsync</code> equal to <code>true</code>, this function can't run more frequently than the refresh rate (e.g. 60 Hz), and will halt the program until ready if necessary.

== See Also ==
* [[love.graphics.clear]]
* [[parent::love.graphics]]
[[Category:Functions]]
[[Sub-Category::Drawing| ]]
{{#set:Description=Displays the results of drawing operations on the screen.}}
{{#set:Since=000}}
== Other Languages ==
{{i18n|love.graphics.present}}