Anybody ever encountered with this weird error before?
what’s uint and why isn’t it supported? and is there any way that we can make it allowed in spark sl?
float hash21(vec2 p)
{
uvec2 q = uvec2(ivec2(p)) * uvec2(1597334673U, 3812015801U);
uint n = (q.x ^ q.y) * 1597334673U;
return float(n) / float(0xffffffffU);
}