aboutsummaryrefslogtreecommitdiff
path: root/Gem/examples/10.glsl/blur.vert
diff options
context:
space:
mode:
Diffstat (limited to 'Gem/examples/10.glsl/blur.vert')
-rw-r--r--Gem/examples/10.glsl/blur.vert9
1 files changed, 9 insertions, 0 deletions
diff --git a/Gem/examples/10.glsl/blur.vert b/Gem/examples/10.glsl/blur.vert
new file mode 100644
index 0000000..0254682
--- /dev/null
+++ b/Gem/examples/10.glsl/blur.vert
@@ -0,0 +1,9 @@
+varying vec2 texcoord0;
+void main()
+{
+ gl_TexCoord[0] = gl_MultiTexCoord0;
+
+ // perform standard transform on vertex
+ gl_Position = ftransform();
+
+}