aboutsummaryrefslogtreecommitdiff
path: root/Gem/examples/10.glsl/fetching.vert
diff options
context:
space:
mode:
authorTravis CI <zmoelnig@travis-ci.umlaeute.mur.at>2015-03-14 20:38:11 +0000
committerTravis CI <zmoelnig@travis-ci.umlaeute.mur.at>2015-03-14 20:38:11 +0000
commitfbd33b6f3211150cdb14da4afc37f99668a44a14 (patch)
treee1d57060d48024d4e6c86b4257ba016f7a41a325 /Gem/examples/10.glsl/fetching.vert
Gem osx/i386
built '' for osx/i386
Diffstat (limited to 'Gem/examples/10.glsl/fetching.vert')
-rw-r--r--Gem/examples/10.glsl/fetching.vert15
1 files changed, 15 insertions, 0 deletions
diff --git a/Gem/examples/10.glsl/fetching.vert b/Gem/examples/10.glsl/fetching.vert
new file mode 100644
index 0000000..b41cc16
--- /dev/null
+++ b/Gem/examples/10.glsl/fetching.vert
@@ -0,0 +1,15 @@
+uniform sampler2D MyTex;
+varying vec4 C;
+void main()
+{
+ vec4 v = vec4(gl_Vertex);
+ vec4 color = texture2D(MyTex, (gl_TextureMatrix[0] * gl_MultiTexCoord0).st);
+ v.z = color.r;
+// v.x += (color.b-0.5)/2.;
+// v.y += (color.g-0.5)/2.;
+
+ C=color;
+ gl_Position = gl_ModelViewProjectionMatrix * v;
+
+}
+