Skip to content

⬅️ Back to Table of Contents

📄 WebGLRenderTarget.js

📊 Analysis Summary

Metric Count
🧱 Classes 1
📦 Imports 1

📚 Table of Contents

🛠️ File Location:

📂 src/renderers/WebGLRenderTarget.js

📦 Imports

Name Source
RenderTarget ../core/RenderTarget.js

Classes

WebGLRenderTarget

Class Code
class WebGLRenderTarget extends RenderTarget {

    /**
     * Constructs a new 3D render target.
     *
     * @param {number} [width=1] - The width of the render target.
     * @param {number} [height=1] - The height of the render target.
     * @param {RenderTarget~Options} [options] - The configuration object.
     */
    constructor( width = 1, height = 1, options = {} ) {

        super( width, height, options );

        /**
         * This flag can be used for type testing.
         *
         * @type {boolean}
         * @readonly
         * @default true
         */
        this.isWebGLRenderTarget = true;

    }

}