Difference between revisions of "love.graphics.newCanvas"

m
Line 1: Line 1:
{{newin|[[0.8.0]]|080|type=function}}
+
{{newin|[[0.8.0]]|080|type=function|text=It has been renamed from [[love.graphics.newFramebuffer]]}}
 
Creates a new [[Canvas]] object for offscreen rendering.
 
Creates a new [[Canvas]] object for offscreen rendering.
 
{{newobjectnotice}}
 
{{newobjectnotice}}

Revision as of 22:29, 5 February 2012

Available since LÖVE 0.8.0
It has been renamed from love.graphics.newFramebuffer.

Creates a new Canvas object for offscreen rendering.

O.png This function can be slow if it is called repeatedly, such as from love.update or love.draw. If you need to use a specific resource often, create it once and store it somewhere it can be reused!  



Function

Synopsis

canvas = love.graphics.newCanvas( )

Arguments

None.

Returns

Canvas canvas
A new Canvas with width/height equal to the window width/height.

Function

Synopsis

canvas = love.graphics.newCanvas( width, height )

Arguments

number width
The desired width of the Canvas.
number height
The desired height of the Canvas.

Returns

Canvas canvas
A new Canvas with specified width and height.

See Also


Other Languages