summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2004-09-15 16:34:06 +0000
committerAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2004-09-15 16:34:06 +0000
commitb5e116aa70f745bd217e8dcc63170c066ff674b3 (patch)
tree301aa8b5041d677f0077eb257b764612d42da851
parent69dde5be74037d6c65d9e87f260054fde424112c (diff)
-rw-r--r--src/vesa.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/vesa.c b/src/vesa.c
index f37318b..77b7ae2 100644
--- a/src/vesa.c
+++ b/src/vesa.c
@@ -167,9 +167,9 @@ static const char *fbSymbols[] = {
static const char *shadowSymbols[] = {
"shadowAlloc",
"shadowInit",
- "shadowUpdatePacked",
- "shadowUpdatePlanar4",
- "shadowUpdatePlanar4x8",
+ "shadowUpdatePackedWeak",
+ "shadowUpdatePlanar4Weak",
+ "shadowUpdatePlanar4x8Weak",
NULL
};
@@ -212,7 +212,7 @@ static XF86ModuleVersionInfo vesaVersionRec =
MODULEVENDORSTRING,
MODINFOSTRING1,
MODINFOSTRING2,
- XF86_VERSION_CURRENT,
+ XORG_VERSION_CURRENT,
VESA_MAJOR_VERSION, VESA_MINOR_VERSION, VESA_PATCHLEVEL,
ABI_CLASS_VIDEODRV, /* This is a video driver */
ABI_VIDEODRV_VERSION,
@@ -909,17 +909,17 @@ VESAScreenInit(int scrnIndex, ScreenPtr pScreen, int argc, char **argv)
if (mode->MemoryModel == 3) { /* Planar */
if (pScrn->bitsPerPixel == 8)
- update = shadowUpdatePlanar4x8;
+ update = shadowUpdatePlanar4x8Weak();
else
- update = shadowUpdatePlanar4;
+ update = shadowUpdatePlanar4Weak();
window = VESAWindowPlanar;
}
else if (pVesa->mapPhys == 0xa0000) { /* Windowed */
- update = shadowUpdatePacked;
+ update = shadowUpdatePackedWeak();
window = VESAWindowWindowed;
}
else { /* Linear */
- update = shadowUpdatePacked;
+ update = shadowUpdatePackedWeak();
window = VESAWindowLinear;
}