diff options
author | Eric Anholt <[email protected]> | 2018-11-15 14:22:16 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-11-16 15:38:18 -0800 |
commit | c2b515379bfc669660133bb2d25e50bb04ac0d66 (patch) | |
tree | e1af6406e849b58eda76de3ef68fc25626de2a21 /src/glx/drisw_glx.c | |
parent | 7076e9f116c2060a7f28680178d96c188c7177df (diff) |
glx: Move DRI extensions pointer loading to driOpenDriver().
The only thing you do with a dri driver handle is get the extensions
pointer, so just fold it in to simplify the callers.
v2: Add the declaration of driGetDriverExtensions() that got lost in a
rebase.
Reviewed-by: Eric Engestrom <[email protected]> (v1)
Reviewed-by: Emil Velikov <[email protected]> (v1)
Diffstat (limited to 'src/glx/drisw_glx.c')
-rw-r--r-- | src/glx/drisw_glx.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/glx/drisw_glx.c b/src/glx/drisw_glx.c index a2777100a32..7b99e49f000 100644 --- a/src/glx/drisw_glx.c +++ b/src/glx/drisw_glx.c @@ -748,17 +748,6 @@ driswDestroyScreen(struct glx_screen *base) #define SWRAST_DRIVER_NAME "swrast" -static void * -driOpenSwrast(void) -{ - void *driver = NULL; - - if (driver == NULL) - driver = driOpenDriver(SWRAST_DRIVER_NAME); - - return driver; -} - static const struct glx_screen_vtable drisw_screen_vtable = { .create_context = drisw_create_context, .create_context_attribs = drisw_create_context_attribs, @@ -837,11 +826,7 @@ driswCreateScreen(int screen, struct glx_display *priv) return NULL; } - psc->driver = driOpenSwrast(); - if (psc->driver == NULL) - goto handle_error; - - extensions = driGetDriverExtensions(psc->driver, SWRAST_DRIVER_NAME); + extensions = driOpenDriver(SWRAST_DRIVER_NAME, &psc->driver); if (extensions == NULL) goto handle_error; |