diff options
author | Ian Romanick <[email protected]> | 2012-07-18 10:08:49 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-08-06 15:37:04 -0700 |
commit | 05413ddb1da5d4f17b6da891fd2d76cff4947979 (patch) | |
tree | 589608a026bc7bff5f12ba81c46a0e927ea51cb1 /src/egl/drivers | |
parent | 63adb6b9eaa723f6bf9603f3f567e04451df857e (diff) |
egl_dri2: Remove swrast version >= 2 checks
Since support for swrast version 2 was added (f55d027a), it has also been
required. In swrast_driver_extensions, version 2 is set for __DRI_SWRAST
extension. Remove the spurious version checks sprinked through the code.
Signed-off-by: Ian Romanick <[email protected]>
Cc: Kristian Høgsberg <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/egl/drivers')
-rw-r--r-- | src/egl/drivers/dri2/egl_dri2.c | 38 |
1 files changed, 11 insertions, 27 deletions
diff --git a/src/egl/drivers/dri2/egl_dri2.c b/src/egl/drivers/dri2/egl_dri2.c index f86ed0bd5fc..480268f349a 100644 --- a/src/egl/drivers/dri2/egl_dri2.c +++ b/src/egl/drivers/dri2/egl_dri2.c @@ -470,10 +470,7 @@ dri2_setup_screen(_EGLDisplay *disp) api_mask = 1 << __DRI_API_OPENGL; } else { assert(dri2_dpy->swrast); - if (dri2_dpy->swrast->base.version >= 2) - api_mask = 1 << __DRI_API_OPENGL | 1 << __DRI_API_GLES | 1 << __DRI_API_GLES2; - else - api_mask = 1 << __DRI_API_OPENGL; + api_mask = 1 << __DRI_API_OPENGL | 1 << __DRI_API_GLES | 1 << __DRI_API_GLES2; } disp->ClientAPIs = 0; @@ -492,11 +489,9 @@ dri2_setup_screen(_EGLDisplay *disp) } } else { assert(dri2_dpy->swrast); - if (dri2_dpy->swrast->base.version >= 2) { - disp->Extensions.KHR_surfaceless_gles1 = EGL_TRUE; - disp->Extensions.KHR_surfaceless_gles2 = EGL_TRUE; - disp->Extensions.KHR_surfaceless_opengl = EGL_TRUE; - } + disp->Extensions.KHR_surfaceless_gles1 = EGL_TRUE; + disp->Extensions.KHR_surfaceless_gles2 = EGL_TRUE; + disp->Extensions.KHR_surfaceless_opengl = EGL_TRUE; } if (dri2_dpy->image) { @@ -733,24 +728,13 @@ dri2_create_context(_EGLDriver *drv, _EGLDisplay *disp, _EGLConfig *conf, } } else { assert(dri2_dpy->swrast); - if (dri2_dpy->swrast->base.version >= 2) { - dri2_ctx->dri_context = - dri2_dpy->swrast->createNewContextForAPI(dri2_dpy->dri_screen, - api, - dri_config, - dri2_ctx_shared ? - dri2_ctx_shared->dri_context : NULL, - dri2_ctx); - } else if (api == __DRI_API_OPENGL) { - dri2_ctx->dri_context = - dri2_dpy->core->createNewContext(dri2_dpy->dri_screen, - dri_config, - dri2_ctx_shared ? - dri2_ctx_shared->dri_context : NULL, - dri2_ctx); - } else { - /* fail */ - } + dri2_ctx->dri_context = + dri2_dpy->swrast->createNewContextForAPI(dri2_dpy->dri_screen, + api, + dri_config, + dri2_ctx_shared ? + dri2_ctx_shared->dri_context : NULL, + dri2_ctx); } if (!dri2_ctx->dri_context) |