Skip to content

Commit

Permalink
Added git ignore, minor index cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jcowles committed Nov 5, 2013
1 parent 59febc1 commit 7993266
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.swp
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
}
}
gl_Position.xy += toff.xy;
gl_Position.z += depth; // * 2.*(1.-(r*.5)*(r*.5));
gl_Position.z += depth;
gl_Position = uPMatrix * uMVMatrix * gl_Position;
}
</script>
Expand All @@ -126,7 +126,7 @@

void main() {
vec4 color;
vec3 q = vposition.xyz; /// vposition.w;
vec3 q = vposition.xyz;
color = vec4(0.,0.,q.z,1.);
gl_FragColor = color;
}
Expand Down Expand Up @@ -594,5 +594,5 @@
oncanplay="_audioReady = true;"
onplaying="_soundtrack._startTime = new Date().getTime() - _soundtrack.currentTime*1000; Lab.accum('tick', tick)">
</audio>
</body>
</body>
</html>

0 comments on commit 7993266

Please sign in to comment.