I'm fairly new to Shadertoy and GLSL in general. I have successfully duplicated numerous Shadertoy shaders into Blender without actually knowing how it all works. I have looked for tutorials but I'm more of a visual learner.
If someone could explain or, even better, provide some images that describe the difference between fragCoord, iResolution, & fragColor. That would be great!
I'm mainly interested in the Numbers. Because I use Blender I'm used to the canvas being 0 to 1 -or- -1 to 1
This one in particular has me a bit confused.
vec2 u = (fragCoord - iResolution.xy * .5) / iResolution.y * 8.;
I can't reproduce the remaining code in Blender without knowing the coordinate system.
Any help would be greatly appreciated!
It is normal, you cannot reproduce this code in blender without knowing the coordinate system.
The Shadertoy documentation states:
Let me explain.
The
iResolution
variable is auniform vec3
which contains the dimensions of the window and is sent to the shader with some openGL code.The
fragCoord
variable is a built-in variable that contains the coordinates of the pixel where the shader is being applied.More concretely:
vec2
that is between 0 > 640 on the X axis and 0 > 360 on the Y axisvec2
with an X value of 640 and a Y value of 360quick note on how vectors work in OpenGL:
This image was calculated with the following code:
The output ranges from
0,0
in the lower-left and1,1
in the upper-right. This is the default lower-left windows space set by OpenGL.The output ranges from
-0.5,-0.5
in the lower-left and0.5,0.5
because in the first step we subtract half of the window size [0.5
] from each pixel coordinate [fragCoord
]. You can see the effect in the way the red and green values don't kick into visibility until much later.You might also want to normalize only the y axis by changing the first step to
Depending our your purpose the image can seem strange if you normalize both axes so this is a possible strategy.
This an image was calculated with the following code:
The
ceil()
function allows us to see that the center of the image is 0, 0As for the second part of the shadertoy documentation:
Really all this means is that
fragColor
contains four values that are shopped to the next stage in the rendering pipeline. You can find more about in and out variables here.The values in
fragColor
determine the color of the pixel where the shader is being applied.If you want to learn more about shaders these are some good starting places:
the book of shader - uniform
learn OpenGL - shader