colorTexture = {
const scale = chroma.scale(renderProps.palette);
const count = 256;
const colorData = new Uint8Array(count * 4);
for (let i = 0; i < count; ++i) {
let value = i / (count - 1.0);
let color = scale(value).rgb();
const stride = i * 4;
colorData[stride] = color[0];
colorData[stride + 1] = color[1];
colorData[stride + 2] = color[2];
colorData[stride + 3] = 255;
}
const texture = new THREE.DataTexture(colorData, count, 1);
texture.format = THREE.RGBAFormat;
texture.type = THREE.UnsignedByteType;
texture.minFilter = THREE.LinearFilter;
texture.magFilter = THREE.LinearFilter;
texture.wrapS = THREE.ClampToEdgeWrapping;
texture.wrapT = THREE.ClampToEdgeWrapping;
texture.needsUpdate = true;
invalidation.then(() => texture.dispose());
return texture;
}