Whether or not to generate mip maps (based on minification settings). If true, gl.generateMipmap will be called whenever the image data changes.
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.
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.
Default texture, e.g., used for unbind.
Returns the number of bytes this object approximately allocates on the GPU. The size will be zero when no image data was passed to the texture object.
Read-only access to the objects context, used to get context information and WebGL API access.
Cached format of the data provided to the texture object for efficient resize. This is set on initialization and might change on data transfers.
The height of the texture object in px.
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.
Cached internal format of the texture for efficient resize. This can only be changed by re-initialization.
Read-only access to the WebGL object handle.
Convenience getter for the 2-tuple containing width and height.
Cached type of the data provided to the texture used for efficient resize. This is set on initialization and might change on data transfers.
Cached object status used to derive validity when initialized.
The width of the texture object in px.
Bind the texture object to a texture unit.
Create a texture object on the GPU.
Initial width of the texture in px.
Initial height of the texture in px.
Internal format of the texture object.
Format of the texture data even though no data is passed.
Data type of the texel data.
Pass image data to the texture object.
Texel data that will be copied into the objects data store.
Allows to skip binding the texture (e.g., when binding is handled outside).
Allows to skip unbinding the texture (e.g., when binding is handled outside).
Delete the texture object on the GPU. This should have the reverse effect of create
.
Asynchronous load of an image via URL or data URI.
Uniform resource locator string referencing the image that should be loaded (data URI supported).
Enable cross origin data loading.
Sets the texture object's magnification and minification filter. If a mipmap mode is set for minification, will be generated automatically whenever the image data changes. The MipMap can be generated manually as well by calling generateMipMap (@see generateMipMap).
Value for the TEXTURE_MAG_FILTER parameter.
Value for the TEXTURE_MIN_FILTER parameter.
Allows to skip binding the texture (e.g., when binding is handled outside).
Allows to skip unbinding the texture (e.g., when binding is handled outside).
Generate MipMap for the texture. This is only required when minification filter is set to use the MipMap. If the mipmap is generated, it will be automatically regenerated whenever the image data changes via one of this classes' methods. Should be called manually when updated image data from outside though.
Allows to skip binding the texture (e.g., when binding is handled outside).
Allows to skip unbinding the texture (e.g., when binding is handled outside).
Sets this textures anisotropy value. If anisotropy is not supported a debug message is logged. If anisotropy is supported, the given value is clamped to the maximum supported anisotropy value and setup. Note that using as well as changing a texture's anisotropy value requires (re)generating a MipMap and takes only effect when minification filtering is setup to use MipMapping.
Targeted maximum anisotropy value (will be clamped to [0.0, MAX_ANISOTROPY]).
Allows to skip binding the texture (e.g., when binding is handled outside).
Allows to skip unbinding the texture (e.g., when binding is handled outside).
Increment the reference count of this object.
This can be used to reformat the texture image without creating a new texture object. Please note that this resets the texture's image data to undefined. @see data for setting new image data.
Internal format of the texture object.
Format of the texture data even though no data is passed.
Data type of the texel data.
Allows to skip binding the texture (e.g., when binding is handled outside).
Allows to skip unbinding the texture (e.g., when binding is handled outside).
This should be used to implement efficient resize the texture.
Targeted/new width of the texture in px.
Targeted/new height of the texture in px.
Allows to skip binding the texture (e.g., when binding is handled outside).
Allows to skip unbinding the texture (e.g., when binding is handled outside).
Unbind the texture object from a texture unit.
Decrement the reference count of this object.
Sets the texture object's wrapping function for s and t coordinates.
Value for the TEXTURE_WRAP_S parameter, defaulted to CLAMP_TO_EDGE.
Value for the TEXTURE_WRAP_T parameter, defaulted to CLAMP_TO_EDGE.
Allows to skip binding the texture (e.g., when binding is handled outside).
Allows to skip unbinding the texture (e.g., when binding is handled outside).
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.
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.
Wrapper for an WebGL 2D texture providing size accessors and requiring for bind, unbind, resize, validity, and initialization implementations. The texture object is created on initialization and deleted on uninitialization. After being initialized, the texture can be resized, reformated, and data can set directly or via fetch: