Skip to content

Instantly share code, notes, and snippets.

View mattdesl's full-sized avatar
👋

Matt DesLauriers mattdesl

👋
View GitHub Profile
@mattdesl
mattdesl / about.md
Last active February 25, 2018 20:50 — forked from automata/about.md
Using @mattdesl's Texel with Three.js (WebGL renderer)
npm install texel@1.0.15 --global
npm install three
texel index.js --open

Wait for output.

output

@mattdesl
mattdesl / glitch displace.glsl
Created January 15, 2015 19:48 — forked from glslioadmin/TEMPLATE.glsl
GLSL.io Transition (v1)
#ifdef GL_ES
precision highp float;
#endif
uniform sampler2D from, to;
uniform float progress;
uniform vec2 resolution;
highp float random(vec2 co)
{
highp float a = 12.9898;
highp float b = 78.233;