Mesa (master): st/dri: remove a dummy function dri2_create_context

Marek Olšák mareko at kemper.freedesktop.org
Fri Aug 5 05:11:41 UTC 2011


Module: Mesa
Branch: master
Commit: a3cde50effbc469379bf5d4d69d03464de43fb29
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a3cde50effbc469379bf5d4d69d03464de43fb29

Author: Marek Olšák <maraeo at gmail.com>
Date:   Fri Aug  5 07:02:25 2011 +0200

st/dri: remove a dummy function dri2_create_context

It does nothing besides calling dri_create_context with the same parameters.

---

 src/gallium/state_trackers/dri/drm/dri2.c |   16 +---------------
 1 files changed, 1 insertions(+), 15 deletions(-)

diff --git a/src/gallium/state_trackers/dri/drm/dri2.c b/src/gallium/state_trackers/dri/drm/dri2.c
index fe4ddb3..5344775 100644
--- a/src/gallium/state_trackers/dri/drm/dri2.c
+++ b/src/gallium/state_trackers/dri/drm/dri2.c
@@ -662,20 +662,6 @@ fail:
 }
 
 static boolean
-dri2_create_context(gl_api api, const struct gl_config * visual,
-                    __DRIcontext * cPriv, void *sharedContextPrivate)
-{
-   struct dri_context *ctx = NULL;
-
-   if (!dri_create_context(api, visual, cPriv, sharedContextPrivate))
-      return FALSE;
-
-   ctx = cPriv->driverPrivate;
-
-   return TRUE;
-}
-
-static boolean
 dri2_create_buffer(__DRIscreen * sPriv,
                    __DRIdrawable * dPriv,
                    const struct gl_config * visual, boolean isPixmap)
@@ -702,7 +688,7 @@ const struct __DriverAPIRec driDriverAPI = {
    .InitScreen = NULL,
    .InitScreen2 = dri2_init_screen,
    .DestroyScreen = dri_destroy_screen,
-   .CreateContext = dri2_create_context,
+   .CreateContext = dri_create_context,
    .DestroyContext = dri_destroy_context,
    .CreateBuffer = dri2_create_buffer,
    .DestroyBuffer = dri_destroy_buffer,




More information about the mesa-commit mailing list