playcanvas
Version:
Open-source WebGL/WebGPU 3D engine for the web
27 lines (26 loc) • 540 B
JavaScript
var uncompressed_default = `
uint tAw;
vec4 tBcached;
vec4 unpackRotation(vec3 data) {
return vec4(data.xyz, sqrt(max(0.0, 1.0 - dot(data, data))));
}
vec3 getCenter() {
uvec4 tA = loadTransformA();
tAw = tA.w;
tBcached = loadTransformB();
return uintBitsToFloat(tA.xyz);
}
vec4 getColor() {
return loadSplatColor();
}
vec4 getRotation() {
return unpackRotation(vec3(unpackHalf2x16(tAw), tBcached.w)).wxyz;
}
vec3 getScale() {
return tBcached.xyz;
}
`;
export {
uncompressed_default as default
};