summaryrefslogtreecommitdiff
path: root/tests/spec/glsl-1.30/execution/fs-texture-sampler2dshadow.vert
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spec/glsl-1.30/execution/fs-texture-sampler2dshadow.vert')
-rw-r--r--tests/spec/glsl-1.30/execution/fs-texture-sampler2dshadow.vert6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/spec/glsl-1.30/execution/fs-texture-sampler2dshadow.vert b/tests/spec/glsl-1.30/execution/fs-texture-sampler2dshadow.vert
new file mode 100644
index 000000000..bb6661d9d
--- /dev/null
+++ b/tests/spec/glsl-1.30/execution/fs-texture-sampler2dshadow.vert
@@ -0,0 +1,6 @@
+#version 130
+out vec4 tex_coord;
+void main() {
+ gl_Position = gl_Vertex;
+ tex_coord = (gl_Vertex + 1.0) / 2.0;
+}