Difference between revisions of "Framebuffer"

(Added newin template)
Line 1: Line 1:
'''''Only available with LÖVE 0.7.0 Game Slave'''''
+
{{newin|[[0.7.0]]}}
  
 
A Framebuffer is used for off-screen rendering. Think of it as an invisible screen that you can draw to, but that will not be visible until you draw it to the actual visible screen.
 
A Framebuffer is used for off-screen rendering. Think of it as an invisible screen that you can draw to, but that will not be visible until you draw it to the actual visible screen.

Revision as of 07:39, 20 September 2010

Available since LÖVE 0.7.0
It is not supported in earlier versions.


A Framebuffer is used for off-screen rendering. Think of it as an invisible screen that you can draw to, but that will not be visible until you draw it to the actual visible screen. It is also known as "render to texture".

Constructors

love.graphics.newFramebufferCreates a new Framebuffer.

Functions

CanvasOff-screen render target.
Canvas (Nederlands)Off-screen render target.
FramebufferOff-screen render target.
Framebuffer:getImageDataGet stored ImageData.
Framebuffer:getWrapGets the wrapping properties of a Framebuffer.
Framebuffer:renderToRender to a framebuffer using a function.
Framebuffer:setWrapSets the wrapping properties of a Framebuffer.
ImageDrawable image type.
MeshA 2D polygon mesh used for drawing arbitrary textured shapes.
ParticleSystemUsed to create cool effects, like fire.
SpriteBatchStore image positions in a buffer, and draw it in one call.
SpriteBatch (Français)Stock des positions d'image dans un tampon, puis les trace en un seul appel.
TextDrawable text.
TextureSuperclass for drawable objects which represent a texture.
VideoA drawable video.

Supertypes

Drawable

See Also