[Piglit] [PATCH 3/9] generated tests: Added tests for the 'notEqual' builtin.

Paul Berry stereotype441 at gmail.com
Mon Aug 15 11:45:24 PDT 2011


This function has been available since as early GLSL 1.10, it was
simply forgotten from the initial implementation of generated tests.
---
 generated_tests/builtin_function.py |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/generated_tests/builtin_function.py b/generated_tests/builtin_function.py
index e3ec25d..0a187cd 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)
 
-- 
1.7.6



More information about the Piglit mailing list