Skip to content

Instantly share code, notes, and snippets.

View CaptainGPU's full-sized avatar

CaptainGPU CaptainGPU

View GitHub Profile
@CaptainGPU
CaptainGPU / Worley.glsl
Created November 12, 2023 13:52
Worley.glsl
/* Main function, uniforms & utils */
#ifdef GL_ES
precision mediump float;
#endif
uniform vec2 u_resolution;
uniform float u_time;
/*
AUTO-COMPLETE SNIPPETS FOR GLSL WITHIN VISUAL CODE STUDIO
Lewis Lepton
https://lewislepton.com
useful places that i grabbed info from
http://www.shaderific.com/glsl
https://www.khronos.org/opengl/wiki/OpenGL_Shading_Language
plus various other papers & books
*/