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:40:49 +0000
committerTravis CI <zmoelnig@travis-ci.umlaeute.mur.at>2015-03-14 20:40:49 +0000
commit5c694f159b012d1d94bf15bfe580dec52e4fe797 (patch)
treece400f82d72f92189c50f54afa11c568cda53562 /Gem/examples/10.glsl/fetching.vert
Gem osx/x86_64
built '' for osx/x86_64
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;
+
+}
+