+ 1
Webgl
Which programing language is used to creat webgl?
2 Answers
+ 13
WebGL programs consist of control code written in JavaScript and shader code that is written in OpenGL Shading Language (GLSL), a language similar to C or C++, and is executed on a computer's graphics processing unit (GPU).
It evolved out of the Canvas 3D experiments started by Vladimir VukiÄeviÄ at Mozilla.
0
JavaScript is used with WebGL.
GLSL is a shader language but you can use WebGL without writing custom shaders.
If you want to see some examples using WebGL, check:
Volumetric 3D Julia Set Fractal Viewer
https://code.sololearn.com/W6e6xWN0T7Jv/#html
or
Mandelbrot Fractal Zoomout
https://code.sololearn.com/WiH4n0rrvD1B/#html
Both examples use custom shaders.