aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/glsl-es-1.00/compiler/shaders/constFunc.frag
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spec/glsl-es-1.00/compiler/shaders/constFunc.frag')
-rw-r--r--tests/spec/glsl-es-1.00/compiler/shaders/constFunc.frag20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/spec/glsl-es-1.00/compiler/shaders/constFunc.frag b/tests/spec/glsl-es-1.00/compiler/shaders/constFunc.frag
new file mode 100644
index 00000000..1a71ec79
--- /dev/null
+++ b/tests/spec/glsl-es-1.00/compiler/shaders/constFunc.frag
@@ -0,0 +1,20 @@
+// [config]
+// expect_result: fail
+// glsl_version: 1.00
+//
+// # NOTE: Config section was auto-generated from file
+// # NOTE: 'glslparser.tests' at git revision
+// # NOTE: 6cc17ae70b70d150aa1751f8e28db7b2a9bd50f0
+// [end config]
+
+vec2 func()
+{
+ vec2 v;
+ return v;
+}
+
+void main()
+{
+ const vec3 v = vec3(1.0, func()); // user defined functions do not return const value
+ gl_FragColor = vec4(v, v);
+}