[Piglit] [PATCH] glx_ext_create_context_es2_profile: Allow GLES 3.2.
Kyle Brenneman
kyle.brenneman at gmail.com
Sat Dec 19 10:54:00 PST 2015
Change the invalid opengl es version test to check for GLES 3.3 instead of 3.2,
since OpenGL ES 3.2 is a valid version number now.
Tested on NVIDIA driver version 352.63 and Mesa 10.1.3.
---
tests/spec/glx_arb_create_context/invalid-es-version.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/spec/glx_arb_create_context/invalid-es-version.c b/tests/spec/glx_arb_create_context/invalid-es-version.c
index 3bae0ba..d4944fc 100644
--- a/tests/spec/glx_arb_create_context/invalid-es-version.c
+++ b/tests/spec/glx_arb_create_context/invalid-es-version.c
@@ -93,7 +93,7 @@ int main(int argc, char **argv)
*/
pass = try_version(1, 2) && pass;
pass = try_version(2, 1) && pass;
- pass = try_version(3, 2) && pass;
+ pass = try_version(3, 3) && pass;
GLX_ARB_create_context_teardown();
--
1.9.1
More information about the Piglit
mailing list