You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
51 lines
1.2 KiB
/**
|
|
* @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}
|
|
* @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_;
|
|
}
|
|
}
|
|
|
|
export default PaletteTexture;
|