Why rendering this model makes the page freeze?

Is it because the model has too many nodes?

I get a 404 file not found in the console of the browser:

Looks like you are loading amazingly large texture :slight_smile:

texImage2D is the webgl function used to “upload” textures to the gpu.

If you can attach the model here, we can confirm.

New pg

You have 5 images of 12096x12095, which takes a bit of time to decompress and load into the GPU.

You can probably divide their size by more than 10 and keep the same quality, as they are mostly empty images. Also, this will allow you to run the model on more platforms, as there are probably GPUs that cannot handle such large textures (currently, WebGPU in Canary does not handle textures >= 8192!).

1 Like