[Piglit] [PATCH] glx_ext_create_context_es2_profile: Allow GLES 3.2.

Vinson Lee vlee at freedesktop.org
Sun Dec 20 01:05:25 PST 2015


On Sat, Dec 19, 2015 at 10:54 AM, Kyle Brenneman
<kyle.brenneman at gmail.com> wrote:
> 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
>
> _______________________________________________
> Piglit mailing list
> Piglit at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/piglit

Reviewed-by: Vinson Lee <vlee at freedesktop.org>


More information about the Piglit mailing list