Class: WebGLPrepare

PIXI.prepare.WebGLPrepare

The prepare manager provides functionality to upload content to the GPU.

An instance of this class is automatically created by default, and can be found at renderer.plugins.prepare

new PIXI.prepare.WebGLPrepare (renderer)

Name Type Description
renderer PIXI.WebGLRenderer

A reference to the current renderer

Extends

Methods

add (item)PIXI.CanvasPrepare inherited

Manually add an item to the uploading queue.

Name Type Description
item PIXI.DisplayObject | PIXI.Container | PIXI.BaseTexture | PIXI.Texture | PIXI.Graphics | PIXI.Text | *

Object to add to the queue

Returns:
Type Description
PIXI.CanvasPrepare Instance of plugin for chaining.

Destroys the plugin, don't use after this.

register (addHook, uploadHook)PIXI.BasePrepare Deprecated : since version 4.4.2 inherited

Name Type Description
addHook function optional

Function call that takes two parameters: item:*, queue:Array function must return true if it was able to add item to the queue.

uploadHook function optional

Function call that takes two parameters: prepare:CanvasPrepare, item:* and function must return true if it was able to handle upload of item.

See:
Returns:
Type Description
PIXI.BasePrepare Instance of plugin for chaining.

registerFindHook (addHook)PIXI.BasePrepare inherited

Adds hooks for finding items.

Name Type Description
addHook function

Function call that takes two parameters: item:*, queue:Array function must return true if it was able to add item to the queue.

Returns:
Type Description
PIXI.BasePrepare Instance of plugin for chaining.

registerUploadHook (uploadHook)PIXI.BasePrepare inherited

Adds hooks for uploading items.

Name Type Description
uploadHook function

Function call that takes two parameters: prepare:CanvasPrepare, item:* and function must return true if it was able to handle upload of item.

Returns:
Type Description
PIXI.BasePrepare Instance of plugin for chaining.

upload (item, done) inherited

Upload all the textures and graphics to the GPU.

Name Type Description
item function | PIXI.DisplayObject | PIXI.Container | PIXI.BaseTexture | PIXI.Texture | PIXI.Graphics | PIXI.Text

Either the container or display object to search for items to upload, the items to upload themselves, or the callback function, if items have been added using prepare.add.

done function optional

Optional callback when all queued uploads have completed