aboutsummaryrefslogtreecommitdiff
path: root/packages/noncvs/windows/extra/Gem/examples/10.glsl/P_distord.frag
diff options
context:
space:
mode:
Diffstat (limited to 'packages/noncvs/windows/extra/Gem/examples/10.glsl/P_distord.frag')
-rw-r--r--packages/noncvs/windows/extra/Gem/examples/10.glsl/P_distord.frag19
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/noncvs/windows/extra/Gem/examples/10.glsl/P_distord.frag b/packages/noncvs/windows/extra/Gem/examples/10.glsl/P_distord.frag
new file mode 100644
index 00000000..5460d6ce
--- /dev/null
+++ b/packages/noncvs/windows/extra/Gem/examples/10.glsl/P_distord.frag
@@ -0,0 +1,19 @@
+// Cyrille Henry 2007
+
+uniform sampler2D tex0;
+
+void main()
+{
+ vec2 C = (gl_TextureMatrix[0] * gl_TexCoord[0]).st;
+ gl_FragColor = texture2D(tex0, C ) ;
+}
+
+
+
+
+
+
+
+
+
+