// USER CODE END

uniform float time; uniform vec2 mouse; uniform vec2 resolution; in vec2 v_uv; out vec4 fragColor; // USER CODE START vec3 mainImage(vec2 uv, float t, vec2 m, vec2 res) // User writes here return vec3(uv.x, uv.y, 0.0);

void main() vec2 uv = v_uv; vec3 col = mainImage(uv, time, mouse, resolution); fragColor = vec4(col, 1.0);

Beppo Shaders -

// USER CODE END

uniform float time; uniform vec2 mouse; uniform vec2 resolution; in vec2 v_uv; out vec4 fragColor; // USER CODE START vec3 mainImage(vec2 uv, float t, vec2 m, vec2 res) // User writes here return vec3(uv.x, uv.y, 0.0); beppo shaders

void main() vec2 uv = v_uv; vec3 col = mainImage(uv, time, mouse, resolution); fragColor = vec4(col, 1.0); // USER CODE END uniform float time; uniform

Disclaimer:

All content posted by the user/ members in the form of Offers/Products/Company Profiles/Images etc. is the responsibility of the user / member and Enic.PK shall not be held liable for any such content in any way.