package.webgl.PaletteTexture.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ol Show documentation
Show all versions of ol Show documentation
OpenLayers mapping library
The newest version!
/**
* @module ol/webgl/PaletteTexture
*/
class PaletteTexture {
/**
* @param {string} name The name of the texture.
* @param {Uint8Array} data The texture data.
*/
constructor(name, data) {
this.name = name;
this.data = data;
/**
* @type {WebGLTexture|null}
* @private
*/
this.texture_ = null;
}
/**
* @param {WebGLRenderingContext} gl Rendering context.
* @return {WebGLTexture} The texture.
*/
getTexture(gl) {
if (!this.texture_) {
const texture = gl.createTexture();
gl.bindTexture(gl.TEXTURE_2D, texture);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.NEAREST);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST);
gl.texImage2D(
gl.TEXTURE_2D,
0,
gl.RGBA,
this.data.length / 4,
1,
0,
gl.RGBA,
gl.UNSIGNED_BYTE,
this.data,
);
this.texture_ = texture;
}
return this.texture_;
}
/**
* @param {WebGLRenderingContext} gl Rendering context.
*/
delete(gl) {
if (this.texture_) {
gl.deleteTexture(this.texture_);
}
this.texture_ = null;
}
}
export default PaletteTexture;