4 ms·
Do you have to rewrite GLSL shaders when migrating a game from desktop to browser?
by iamcreasy 9mo ago
Do you have to rewrite GLSL shaders when migrating a game from desktop to browser?
- rimmontrieu 9mo agoBrowsers only support OpenGL ES so only if your shaders use any OpenGL specific features you have to rewrite. Otherwise, it's just plain simple to export to both desktop and browser targets.
- iamcreasy 9mo agoThanks. What is your take on building multiplayer game with TeaVM + libgdx? (Assuming the server is hosted off-browser)