summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Berry <stereotype441@gmail.com>2011-08-12 09:43:20 -0700
committerPaul Berry <stereotype441@gmail.com>2011-08-18 13:54:10 -0700
commitef3fb52c468aa190cdffa20a02de8b4627d0a5cb (patch)
treeb883ef5baebc6e762506332186db69543cb16165
parent290324a3634abf4434cd5016a948a7814dd5c66f (diff)
generated tests: Added tests for the 'notEqual' builtin.
This function has been available since as early GLSL 1.10, it was simply forgotten from the initial implementation of generated tests. Reviewed-by: Chad Versace <chad@chad-versace.us>
-rw-r--r--generated_tests/builtin_function.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/generated_tests/builtin_function.py b/generated_tests/builtin_function.py
index e3ec25d88..0a187cdcd 100644
--- a/generated_tests/builtin_function.py
+++ b/generated_tests/builtin_function.py
@@ -761,6 +761,7 @@ def _make_vector_relational_test_vectors(test_suite_dict):
f('greaterThan', 2, '1.10', lambda x, y: x > y, 'vi')
f('greaterThanEqual', 2, '1.10', lambda x, y: x >= y, 'vi')
f('equal', 2, '1.10', lambda x, y: x == y, 'vib')
+ f('notEqual', 2, '1.10', lambda x, y: x != y, 'vib')
f('not', 1, '1.10', lambda x: not x, 'b')
_make_vector_relational_test_vectors(test_suite)