aboutsummaryrefslogtreecommitdiff
path: root/Gem/examples/10.glsl/geo.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/geo.vert
Gem osx/x86_64
built '' for osx/x86_64
Diffstat (limited to 'Gem/examples/10.glsl/geo.vert')
-rw-r--r--Gem/examples/10.glsl/geo.vert7
1 files changed, 7 insertions, 0 deletions
diff --git a/Gem/examples/10.glsl/geo.vert b/Gem/examples/10.glsl/geo.vert
new file mode 100644
index 0000000..4359aa3
--- /dev/null
+++ b/Gem/examples/10.glsl/geo.vert
@@ -0,0 +1,7 @@
+void main()
+{
+ gl_FrontColor = gl_Color;
+ gl_TexCoord[0] = gl_MultiTexCoord0;
+ gl_Position = ftransform();
+ //simple passthrow
+}