diff options
author | Dave Airlie <airlied@pegasus.(none)> | 2007-03-27 11:00:13 +1000 |
---|---|---|
committer | Dave Airlie <airlied@pegasus.(none)> | 2007-03-27 11:00:13 +1000 |
commit | d387a3ddf76716791e5e8b8f0954ca0df3c579d6 (patch) | |
tree | 241e9618b54568999347b6941b0c69f453fe5846 /hw/xfree86/dixmods | |
parent | 92ba435bd9aa7b6eca9aef8e5193576ef62fc9db (diff) |
fix loading of GLcore after recent loading changes
Diffstat (limited to 'hw/xfree86/dixmods')
-rw-r--r-- | hw/xfree86/dixmods/glxmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/dixmods/glxmodule.c b/hw/xfree86/dixmods/glxmodule.c index 401707abc..5384f434b 100644 --- a/hw/xfree86/dixmods/glxmodule.c +++ b/hw/xfree86/dixmods/glxmodule.c @@ -95,8 +95,8 @@ __glXMesaProxyScreenProbe(ScreenPtr pScreen) static __GLXprovider *provider; if (provider == NULL) { - GLcore = LoadSubModuleLocal(glxModule, "GLcore", NULL, NULL, NULL, NULL, - NULL, NULL); + GLcore = LoadSubModule(glxModule, "GLcore", NULL, NULL, NULL, NULL, + NULL, NULL); if (GLcore == NULL) return NULL; |