PMREMGenerator

This class generates a Prefiltered, Mipmapped Radiance Environment Map (PMREM) from a cubeMap environment texture. This allows different levels of blur to be quickly accessed based on material roughness. Unlike a traditional mipmap chain, it only goes down to the LOD_MIN level (above), and then creates extra even more filtered 'mips' at the same LOD_MIN resolution, associated with higher roughness levels. In this way we maintain resolution to smoothly interpolate diffuse lighting while limiting sampling computation.

Constructor

PMREMGenerator(renderer : WebGLRenderer, maxTileSize : Integer)

This constructor creates a new PMREMGenerator. The maxTileSize specifies maximum tile size for PMREM. Default it 256.

Methods

.fromScene(scene : Scene, sigma : Float, near : Float, far : Float) → WebGLRenderTarget

Generates a PMREM from a supplied Scene, which can be faster than using an image if networking bandwidth is low. Optional near and far planes ensure the scene is rendered in its entirety (the cubeCamera is placed at the origin).

.fromEquirectangular(equirectangular : Texture) → WebGLRenderTarget

equirectangular — the equirectangular source texture.

Generates a PMREM from an equirectangular texture.

.fromCubemap(cubemap : CubeTexture) → WebGLRenderTarget

cubemap — the cubemap source exture.

Generates a PMREM from an cubemap texture.

.compileCubemapShader()

Pre-compiles the cubemap shader. You can get faster start-up by invoking this method during your texture's network fetch for increased concurrency.

.compileEquirectangularShader()

Pre-compiles the equirectangular shader. You can get faster start-up by invoking this method during your texture's network fetch for increased concurrency.

.dispose()

Frees the GPU-related resources allocated by this instance. Call this method whenever this instance is no longer used in your app.

Source

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