Retrieve the active texture unit, used for configuring Sampler2Ds in shaders
Clear the drawing buffer with the appropriate bitmask, accounting for depth buffer if we're rendering in 3D
Initialise and store a shader program and perform one-time setup of its attribute and uniform locations
the ShaderProgram specification
Create a texture from an image with a given source
the TextureAtlas representing the texture to load
Create and store a VBO with a given name to be used as a buffering target and vertex source later on
the name of the VBO
Delete a VBO with a given name to release memory no longer required by the application
the name of the VBO
Unlink the Renderer's Game reference, allowing for garbage collection on Game destroy
// TODO incomplete, part of the first-working-version of the destroy() solution
Generic rendering method; using the information in a given RendererConfig, render some Entities
the RendererConfig specifying what and how to render
Extra WebGL state configuation for specific 2D and 3D related state
Core WebGL Renderer; utilised by the EntityManager to defer the rendering of Entities to the Canvas
Handles every aspect of WebGL API interaction; including the construction and maintenance of Shaders and VBOs, and the rendering of game objects by way of a per-render-call configuration object
Designed to operate entirely on outside configuration, so as to enable the EntityManager to implement abstracted optimisations for things like vertex management, buffering and shader switching