WebGLRenderTarget

WebGLMultipleRenderTargets

A special render target that enables a fragment shader to write to several textures. This approach is useful for advanced rendering techniques like post-processing or deferred rendering.

WebGLMultipleRenderTargets can only be used with a WebGL 2 rendering context.

Constructor

WebGLMultipleRenderTargets(width : Integer, height : Integer, count : Integer, options : Object)

For an explanation of the texture parameters see Texture. For a list of valid options, see WebGLRenderTarget.

Properties

.isWebGLMultipleRenderTargets : Boolean

Read-only flag to check if a given object is of type WebGLMultipleRenderTargets.

.texture : Array

The texture property is overwritten in WebGLMultipleRenderTargets and replaced with an array. This array holds the texture references of the respective render targets.

WebGLRenderTarget properties are available on this class.

Methods

WebGLRenderTarget methods are available on this class.

Source

For more info on how to obtain the source code of this module see this page.