Dear all,
I'd like to find the index of a 3D texture from a compute shader.
But it crashes probably because it runs out of bounds
[code]
uint index = x + y x 128 + z x 128 x 128
[/code]
I've got 768 compute units on my GPU
context→Dispatch (128,128,128);
thanks