Object constructor, requires a context and a valid identifier.
Valid context to create the object for.
Meaningful name for identification of this instance.
Access to all attached renderbuffer objects.
RGBA color, depth value, or stencil value used for clearing the associated buffer.
Queue of all draw buffers that are to be cleared on clear
.
Number of references to this object. If at least a single reference was counted, this object can neither be initialized (and thus created) nor uninitialized (and thus deleted). The reference count is controlled via ref() and unref() functions.
Access to all attached texture objects.
Asserts the objects initialization status to be true. Note that the implementation is cached and forwarded to either an empty function when initialized and to an acutal assert(false) otherwise.
Asserts the objects initialization status to be false. Note that the implementation is cached and forwarded to either an empty function when uninitialized and to an acutal assert(false) otherwise.
Depending on the webgl version and provided bitmask, clears attachments of the framebuffer. Note that this function is set/unset to es2Clear or es3Clear on initialization/uninitialization.
Default framebuffer, e.g., used for unbind.
Read-only access to the objects context, used to get context information and WebGL API access.
Used to remember which attachments are available as potential draw buffers.
Set one or multiple draw buffers.
Array of attachment identifier (e.g., gl.COLOR_ATTACHMENT0).
Convenience accessor: returns the renderable height of the canvas back buffer.
Every GPU asset that allocates memory should provide a human readable identifier for GPU allocation tracking and debugging purposes. Please note that the identifier might changed on initialization due to the generation and assignment of a unique identifier.
Property getter for readonly access to the initialization status of an initializable instance.
Read-only access to the WebGL object handle.
Convenience getter for the 2-tuple containing the texture's width and height.
Cached object status used to derive validity when initialized.
Convenience accessor: returns the renderable width of the canvas back buffer.
Specifying the binding point (target).
RGBA clear color.
WebGL1 implementation for clearing framebuffer attachments.
A GLbitfield bitwise OR mask that indicates the buffers to be cleared.
Allows to skip binding the framebuffer (e.g., when binding is handled outside).
Allows to skip unbinding the framebuffer (e.g., when binding is handled outside).
WebGL2 implementation for clearing framebuffer attachments.
A GLbitfield bitwise OR mask that indicates the buffers to be cleared.
Allows to skip binding the framebuffer (e.g., when binding is handled outside).
Allows to skip unbinding the framebuffer (e.g., when binding is handled outside).
Allows to specify a specific queue of color attachments to be cleared. If no parameter is given, the webgl2 implementation clears all color attachments.
Increment the reference count of this object.
Resets the size (important for valid size change detection in stages).
Access to attached textures, identified by a valid framebuffer attachment.
The attachment to request the texture object of.
Binds the default back buffer as framebuffer to the provided target.
Specifying the binding point (target).
Decrement the reference count of this object.
Method decorator for asserting the initialization status of an initializable to be true.
Method decorator for asserting the initialization status of an initializable to be false.
Method decorator for discarding of Initializable inheritors. This decorator asserts the initialization
status of the instance that is to be discarded, invokes its uninitialization, and falsifies the
initialization status. In order to encourage the use of assertInitialized
and assertUninitialized
they are
dynamically bound to a static, always-failing assert and an empty/undefined function respectively.
Method decorator for initialization of Initializable inheritors. This decorator asserts the initialization status
of the instance that is to be initialized, invokes its initialization with arbitrary number of parameters,
and sets the initialization status to the initialization success (either false or true).
In order to encourage the use of assertInitialized
and assertUninitialized
they are dynamically
bound to either a static, always-failing assert or an empty/undefined function.
Returns a string describing the given status of a framebuffer object.
Context for valid GLenums.
A framebuffer's status.
Method decorator for uninitialization of Initializable inheritors. This decorator asserts the initialization
status of the instance that is to be uninitialized, invokes its uninitialization, and falsifies the
initialization status. In order to encourage the use of assertInitialized
and assertUninitialized
they are
dynamically bound to a static, always-failing assert and an empty/undefined function respectively.
Default framebuffer with framebuffer interface. It is intended for use as default buffer binding and enables lazy target size reconfiguration of stages.
Note that this buffer does query its size from the current context's canvas.