I'm doing some testing with GLSL 3.0 and three.js and I would like to know your opinion about how to deal with the future WebGL2 renderer with regards to the current WebGL1 shaders.
I've been thinking in the possible approaches:
Probably the second option is the low hanging fruit here, and it's actually the one I'm following on my experiments, as it won't need much code to modify and it should works just out of the box. Things could get more complicated as long as we'll start using specific WebGL2 features like for Uniform Buffer Objects.
Does anyone has an strong opinion here why we should choose one or another?
I think I vote for the third approach.
I prefer 3 (if it works perfectly).
+1 For the third approach!
vote yes on 3 ^
voting for 3rd. Keeping WebGL2Renderer completely separate also means no switches between webgl 1 and 2.
I was not aware of this thread (Thanks for letting me know @takahirox ) but I just made a pull request to support WebGL2 and GLSL3.00. My patch does not address the issue of migrating existing user shader code out there, but as far as shader code in the code base, it provides full backward compatibility (with "low-tech": namely ifdefs) and you can start using new features if you want to.
Since #13717 is merged...can we close this issue?
Sure!
Most helpful comment
I think I vote for the third approach.