[name]

A render target is a buffer where the video card draws pixels for a scene that is being rendered in the background. It is used in different effects.

Constructor

[name]([page:Number width], [page:Number height], [page:Object options])

width -- The width of the renderTarget.
height -- The height of the renderTarget.
options -- The options sets the properties of the render target.
Creates a new renderTarget with a certain width and height.

Properties

[property:number wrapS]

The default is THREE.ClampToEdgeWrapping, where the edge is clamped to the outer edge texels. The other two choices are THREE.RepeatWrapping and THREE.MirroredRepeatWrapping.

[property:number wrapT]

The default is THREE.ClampToEdgeWrapping, where the edge is clamped to the outer edge texels. The other two choices are THREE.RepeatWrapping and THREE.MirroredRepeatWrapping.

[property:number magFilter]

How the texture is sampled when a texel covers more than one pixel. The default is THREE.LinearFilter, which takes the four closest texels and bilinearly interpolates among them. The other option is THREE.NearestFilter, which uses the value of the closest texel.

[property:number minFilter]

How the texture is sampled when a texel covers less than one pixel. The default is THREE.LinearMipMapLinearFilter, which uses mipmapping and a trilinear filter. Other choices are THREE.NearestFilter, THREE.NearestMipMapNearestFilter, THREE.NearestMipMapLinearFilter, THREE.LinearFilter, and THREE.LinearMipMapNearestFilter. These vary whether the nearest texel or nearest four texels are retrieved on the nearest mipmap or nearest two mipmaps. Interpolation occurs among the samples retrieved.

[property:number anisotropy]

The number of samples taken along the axis through the pixel that has the highest density of texels. By default, this value is 1. A higher value gives a less blurry result than a basic mipmap, at the cost of more texture samples being used. Use renderer.getMaxAnisotropy() to find the maximum valid anisotropy value for the GPU; this value is usually a power of 2.

[property:Vector2 repeat]

How many times the texture is repeated across the surface, in each direction U and V.

[property:Vector2 offset]

How much a single repetition of the texture is offset from the beginning, in each direction U and V. Typical range is 0.0 to 1.0.

[property:number format]

The default is THREE.RGBAFormat for the texture. Other formats are: THREE.AlphaFormat, THREE.RGBFormat, THREE.LuminanceFormat, and THREE.LuminanceAlphaFormat. There are also compressed texture formats, if the S3TC extension is supported: THREE.RGB_S3TC_DXT1_Format, THREE.RGBA_S3TC_DXT1_Format, THREE.RGBA_S3TC_DXT3_Format, and THREE.RGBA_S3TC_DXT5_Format.

[property:number type]

The default is THREE.UnsignedByteType. Other valid types (as WebGL allows) are THREE.ByteType, THREE.ShortType, THREE.UnsignedShortType, THREE.IntType, THREE.UnsignedIntType, THREE.HalfFloatType, THREE.FloatType, THREE.UnsignedShort4444Type, THREE.UnsignedShort5551Type, and THREE.UnsignedShort565Type.

[property:boolean depthBuffer]

Renders to the depth buffer. Default is true.

[property:boolean stencilBuffer]

Renders to the stencil buffer. Default is true.

[property:boolean generateMipmaps]

Whether to generate mipmaps (if possible) for a texture. True by default.

[property:WebGLRenderTarget shareDepthFrom]

Shares the depth from another WebGLRenderTarget. Default is null.

Methods

[method:null setSize]( [page:Number width], [page:Number height] )

Sets the size of the renderTarget.

[method:RenderTarget clone]()

Creates a copy of the render target.

[method:null dispose]()

Dispatches a dispose event.

[page:EventDispatcher EventDispatcher] methods are available on this class.

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]