Difference between revisions of "RenderTarget.new"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Creates a new RenderTarget object.
 
Creates a new RenderTarget object.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
RenderTarget.new(width,height,filtering,repeating,autoscale,depth,format,extend)
 
RenderTarget.new(width,height,filtering,repeating,autoscale,depth,format,extend)
 
</source>
 
</source>

Revision as of 15:30, 13 July 2023

Available since: Gideros 2013.06
Class: RenderTarget

Description

Creates a new RenderTarget object. <syntaxhighlight lang="lua"> RenderTarget.new(width,height,filtering,repeating,autoscale,depth,format,extend) </source>

Parameters

width: (number) width of rendered texture
height: (number) height of rendered texture
filtering: (boolean) set texture filtering, that is smoothing the image (default = false)
repeating: (boolean) set texture repeating (default = false)
autoscale: (boolean) whether the actual texture size should be scaled to match display resolution (default = false)
depth: (boolean) indicate this rendertarget will hold depth component. Setting this to true creates a render target suitable for shadow mapping (default = false)
format: (string) specify the wanted pixel format for this render target. Use ones of the TextureBase format constants, or leave nil for default (default = TextureBase.RGBA8888)
extend: (boolean) extend the texture to a power of two size internally since Gideros 2022.5.1 (default = true)