diff options
author | George Sapountzis <gsap7@yahoo.gr> | 2008-05-23 22:39:09 +0300 |
---|---|---|
committer | George Sapountzis <gsap7@yahoo.gr> | 2008-05-23 22:40:26 +0300 |
commit | 21a8052fdca2115668dfc747b0b58db437b4eb6d (patch) | |
tree | 6934bdd6bf2606ccc57937c0f483f2c9135a6b7f | |
parent | 877e6c35ff1f0f110627590ac0f12fddf47de506 (diff) |
glx: fix forgotten swrast -> SWRast
-rw-r--r-- | hw/dmx/glxProxy/glxext.c | 2 | ||||
-rw-r--r-- | hw/xfree86/dixmods/glxmodule.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hw/dmx/glxProxy/glxext.c b/hw/dmx/glxProxy/glxext.c index 4825831bd..c40150d80 100644 --- a/hw/dmx/glxProxy/glxext.c +++ b/hw/dmx/glxProxy/glxext.c @@ -40,7 +40,7 @@ ** Stubs to satisfy miinitext.c references. */ typedef int __GLXprovider; -__GLXprovider __glXDRIswrastProvider; +__GLXprovider __glXDRISWRastProvider; void GlxPushProvider(__GLXprovider *provider) { } /* diff --git a/hw/xfree86/dixmods/glxmodule.c b/hw/xfree86/dixmods/glxmodule.c index 35ba74b25..f6fda4b07 100644 --- a/hw/xfree86/dixmods/glxmodule.c +++ b/hw/xfree86/dixmods/glxmodule.c @@ -85,7 +85,7 @@ glxSetup(pointer module, pointer opts, int *errmaj, int *errmin) setupDone = TRUE; - provider = LoaderSymbol("__glXDRIswrastProvider"); + provider = LoaderSymbol("__glXDRISWRastProvider"); if (provider == NULL) return NULL; GlxPushProvider(provider); |