Constructs a new Renderer instance
Renderer settings
Element ID or HTMLElement to insert the canvas into
Cleanup textures that are not being used
If true, will cleanup all textures, regardless of render status
This can be used to free up GFX memory used by textures that are no longer being displayed.
This routine is also called automatically when the memory used by textures exceeds the critical threshold on frame generation OR when the renderer is idle and the memory used by textures exceeds the target threshold.
NOTE: This is a heavy operation and should be used sparingly.
NOTE2: This will not cleanup textures that are currently being displayed.
NOTE3: This will not cleanup textures that are marked as preventCleanup
.
NOTE4: This has nothing to do with the garbage collection of JavaScript.
Create a new scene graph node
A node is the main graphical building block of the Renderer scene graph. It can be a container for other nodes, or it can be a leaf node that renders a solid color, gradient, image, or specific texture, using a specific shader.
To create a text node, see createTextNode.
See CoreNode for more details.
Create a new shader controller for a shader type
Optional
props: OptionalShaderProps<T>Create a new scene graph text node
A text node is the second graphical building block of the Renderer scene graph. It renders text using a specific text renderer that is automatically chosen based on the font requested and what type of fonts are installed into an app.
See ITextNode for more details.
Create a new texture reference
Destroy a node
The Renderer Main API
Remarks
This is the primary class used to configure and operate the Renderer.
It is used to create and destroy Nodes, as well as Texture and Shader references.
Example:
Events
fpsUpdate
fpsUpdateInterval
milliseconds with the current FPSframeTick
quadsUpdate
idle
criticalCleanup
memUsed
- The amount of memory (in bytes) used by textures before the cleanup processcriticalThreshold
- The critical threshold (in bytes)criticalCleanupFailed
memUsed
- The amount of memory (in bytes) used by textures after the cleanup processcriticalThreshold
- The critical threshold (in bytes)