I’m using PHP Desktop (Chrome 130.1 for Windows, Latest) to run a Laravel-based application that includes a 3D viewer implemented with Three.js. The 3D viewer loads .gltf files and renders them using WebGL. While the viewer works perfectly fine in a regular browser (like Chrome), running the same code in PHP Desktop causes the CPU usage to spike to 100%.
Here’s the setup I’m using in my Three.js component:
I suspect the issue might be related to WebGL rendering in PHP Desktop, as it seems like the rendering is happening on the CPU instead of utilizing the GPU.
If anyone has encountered similar issues or knows a solution, I’d greatly appreciate your help!