I'm attempting to convert a Shadertoy to Javascript and WebGL so that it can run independently from Shadertoy. Shadertoy has the concept of a buffer, in this example it re-cycles the buffer and improves the output image. It does this on the Buf A tab.
https://www.shadertoy.com/view/MdyGDW
It does this by writing its output to buffer A which is bound to iChannel0 and then it reads from the same iChannel0 on each draw cycle. How can I implement this concept of buffers in WebGL Javascript fragment shaders, WebGL uses the GLSL language. Specifically in this case it is able to write to the buffer and then read from the same buffer on the next render cycle.
Shadertoy uses technique called rendering to texture. Suppose
gl
is our WebGL context. First we need to create a texture first pass will draw to:Then we create framebuffer object so we can draw to our texture:
Now we can draw:
There're a lot of materials about rendering to texture, for example here.