From: George Sapountzis Date: Fri, 26 Mar 2010 16:44:39 +0000 (+0200) Subject: st/dri mv __driDriverExtensions to drisw.c and dri2.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1fbfc22d8560c9d900832147f504ff64c64358de;p=mesa.git st/dri mv __driDriverExtensions to drisw.c and dri2.c --- diff --git a/src/gallium/state_trackers/dri/common/dri_screen.c b/src/gallium/state_trackers/dri/common/dri_screen.c index 598a07bb646..53053a74c4c 100644 --- a/src/gallium/state_trackers/dri/common/dri_screen.c +++ b/src/gallium/state_trackers/dri/common/dri_screen.c @@ -338,14 +338,6 @@ const struct __DriverAPIRec driDriverAPI = { .CopySubBuffer = dri1_copy_sub_buffer, }; -/* This is the table of extensions that the loader will dlsym() for. */ -PUBLIC const __DRIextension *__driDriverExtensions[] = { - &driCoreExtension.base, - &driLegacyExtension.base, - &driDRI2Extension.base, - NULL -}; - #else const struct __DriverAPIRec driDriverAPI = { @@ -361,13 +353,6 @@ const struct __DriverAPIRec driDriverAPI = { .SwapBuffers = drisw_swap_buffers, }; -/* This is the table of extensions that the loader will dlsym() for. */ -PUBLIC const __DRIextension *__driDriverExtensions[] = { - &driCoreExtension.base, - &driSWRastExtension.base, - NULL -}; - #endif /* vim: set sw=3 ts=8 sts=3 expandtab: */ diff --git a/src/gallium/state_trackers/dri/drm/dri2.c b/src/gallium/state_trackers/dri/drm/dri2.c index 108b18e9d3c..854801d1ea1 100644 --- a/src/gallium/state_trackers/dri/drm/dri2.c +++ b/src/gallium/state_trackers/dri/drm/dri2.c @@ -410,4 +410,12 @@ fail: return NULL; } +/* This is the table of extensions that the loader will dlsym() for. */ +PUBLIC const __DRIextension *__driDriverExtensions[] = { + &driCoreExtension.base, + &driLegacyExtension.base, + &driDRI2Extension.base, + NULL +}; + /* vim: set sw=3 ts=8 sts=3 expandtab: */ diff --git a/src/gallium/state_trackers/dri/sw/drisw.c b/src/gallium/state_trackers/dri/sw/drisw.c index 73bc45d9060..d7c6577818f 100644 --- a/src/gallium/state_trackers/dri/sw/drisw.c +++ b/src/gallium/state_trackers/dri/sw/drisw.c @@ -315,4 +315,11 @@ fail: return NULL; } +/* This is the table of extensions that the loader will dlsym() for. */ +PUBLIC const __DRIextension *__driDriverExtensions[] = { + &driCoreExtension.base, + &driSWRastExtension.base, + NULL +}; + /* vim: set sw=3 ts=8 sts=3 expandtab: */