diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/apm_accel.c | 2 | ||||
-rw-r--r-- | src/apm_funcs.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/apm_accel.c b/src/apm_accel.c index bce9e2e..eec4901 100644 --- a/src/apm_accel.c +++ b/src/apm_accel.c @@ -73,7 +73,7 @@ ApmCacheMonoStipple(ScrnInfoPtr pScrn, PixmapPtr pPix) static StippleScanlineProcPtr *StippleTab = NULL; if (!StippleTab) - StippleTab = LoaderSymbol("XAAStippleScanlineFuncMSBFirst"); + StippleTab = XAAGetStippleScanlineFuncMSBFirst(); for (i = 0; i < APM_CACHE_NUMBER; i++) if ((pApm->apmCache[i].apmStippleCache.serialNumber == pPix->drawable.serialNumber) diff --git a/src/apm_funcs.c b/src/apm_funcs.c index c63a3a9..d2f9e83 100644 --- a/src/apm_funcs.c +++ b/src/apm_funcs.c @@ -717,7 +717,7 @@ A(TEGlyphRenderer)(ScrnInfoPtr pScrn, int x, int y, int w, int h, static GlyphScanlineFuncPtr *GlyphTab = NULL; int w2, h2, dwords; - if (!GlyphTab) GlyphTab = LoaderSymbol("XAAGlyphScanlineFuncLSBFirst"); + if (!GlyphTab) GlyphTab = XAAGetGlyphScanlineFuncLSBFirst(); GlyphFunc = GlyphTab[glyphWidth - 1]; w2 = w + skipleft; |