For the series:

Reviewed-by: Marek Olšák <marek.ol...@amd.com>

Marek

On Mon, May 7, 2018 at 8:49 PM, Timothy Arceri <tarc...@itsqueeze.com>
wrote:

> Just let validate_context_version() do it instead. This fixes
> MESA_GL_VERSION_OVERRIDE for compat, it will also allow us to
> enable new compat versions on a per driver bases in future.
> ---
>  src/mesa/drivers/dri/common/dri_util.c | 8 --------
>  1 file changed, 8 deletions(-)
>
> diff --git a/src/mesa/drivers/dri/common/dri_util.c
> b/src/mesa/drivers/dri/common/dri_util.c
> index 7cb6248b130..75d124097b9 100644
> --- a/src/mesa/drivers/dri/common/dri_util.c
> +++ b/src/mesa/drivers/dri/common/dri_util.c
> @@ -389,14 +389,6 @@ driCreateContextAttribs(__DRIscreen *screen, int api,
>          screen->max_gl_compat_version < 31)
>         mesa_api = API_OPENGL_CORE;
>
> -    if (mesa_api == API_OPENGL_COMPAT
> -        && ((ctx_config.major_version > 3)
> -            || (ctx_config.major_version == 3 &&
> -                ctx_config.minor_version >= 2))) {
> -       *error = __DRI_CTX_ERROR_BAD_API;
> -       return NULL;
> -    }
> -
>      /* The latest version of EGL_KHR_create_context spec says:
>       *
>       *     "If the EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR flag bit is set in
> --
> 2.17.0
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
>
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to