Difference between revisions of "love.graphics.newFramebuffer"

m (correcting warning to show that it only effects earlier versions)
m (Fixed absolute link.)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{newin|[[0.7.0]]|070|type=function}} {{oldin|[[0.8.0]]|080|type=function|text=It has been renamed to [[love.graphics.newCanvas]]}}
+
{{newinoldin|[[0.7.0]]|070|[[0.8.0]]|080|type=function|text=It has been renamed to [[love.graphics.newCanvas]]}}
 
Creates a new framebuffer object for offscreen rendering.
 
Creates a new framebuffer object for offscreen rendering.
{{notice|Versions prior to 0.8.0 have Framebuffers that are susceptible to [http://love2d.org/wiki/PO2_Syndrome power of 2 syndrome].}}
+
{{notice|Versions prior to 0.8.0 have Framebuffers that are susceptible to [[PO2_Syndrome|power of 2 syndrome]].}}
 
{{newobjectnotice}}
 
{{newobjectnotice}}
 
== Function ==
 
== Function ==

Latest revision as of 03:53, 6 September 2016

Available since LÖVE 0.7.0 and removed in LÖVE 0.8.0
It has been renamed to love.graphics.newCanvas.

Creates a new framebuffer object for offscreen rendering.

O.png Versions prior to 0.8.0 have Framebuffers that are susceptible to power of 2 syndrome.  


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

framebuffer = love.graphics.newFramebuffer( )

Arguments

None.

Returns

Framebuffer framebuffer
A new framebuffer with width/height equal to the window width/height.

Function

Synopsis

framebuffer = love.graphics.newFramebuffer( width, height )

Arguments

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

Returns

Framebuffer framebuffer
A new framebuffer with specified width and height.

See Also


Other Languages