diff options
author | Daniel Stone <daniel@fooishbar.org> | 2012-07-10 02:03:20 +0100 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-07-10 00:31:02 -0700 |
commit | d52ab85c7ef5058dcbd8a75eb84058908dc22906 (patch) | |
tree | 4b88c03467eaf4ec0baee3f90f712e1760f83100 /hw/xfree86 | |
parent | 2fba9445a0357f67641e41ac334b5529c37774a2 (diff) |
GLX: Remove extension init dependencies
GLX was the only user of extension init order dependencies, using them
to depend on Composite, which has always been built-in anyway, and DBE,
which is now built-in.
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw/xfree86')
-rw-r--r-- | hw/xfree86/dixmods/glxmodule.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hw/xfree86/dixmods/glxmodule.c b/hw/xfree86/dixmods/glxmodule.c index f263324b8..a2b06a26d 100644 --- a/hw/xfree86/dixmods/glxmodule.c +++ b/hw/xfree86/dixmods/glxmodule.c @@ -46,14 +46,12 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. static MODULESETUPPROTO(glxSetup); -static const char *initdeps[] = { "DOUBLE-BUFFER", "COMPOSITE", NULL }; - static ExtensionModule GLXExt = { GlxExtensionInit, "GLX", &noGlxExtension, NULL, - initdeps + NULL }; static XF86ModuleVersionInfo VersRec = { |