diff options
Diffstat (limited to 'hw/darwin/quartz/cr')
-rw-r--r-- | hw/darwin/quartz/cr/crScreen.m | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hw/darwin/quartz/cr/crScreen.m b/hw/darwin/quartz/cr/crScreen.m index cba92f185..21a79e006 100644 --- a/hw/darwin/quartz/cr/crScreen.m +++ b/hw/darwin/quartz/cr/crScreen.m @@ -1,4 +1,4 @@ -/* $XdotOrg: xc/programs/Xserver/hw/darwin/quartz/cr/crScreen.m,v 1.3 2004/07/30 19:12:18 torrey Exp $ */ +/* $XdotOrg: xc/programs/Xserver/hw/darwin/quartz/cr/crScreen.m,v 1.4 2004/08/12 20:24:36 torrey Exp $ */ /* * Cocoa rootless implementation initialization */ @@ -261,6 +261,10 @@ CRSetupScreen(int index, ScreenPtr pScreen) } #endif /* RENDER */ + // Initialize accelerated rootless drawing + // Note that this must be done before DamageSetup(). + RootlessAccelInit(pScreen); + #ifdef DAMAGE // The Damage extension needs to wrap underneath the // generic rootless layer, so do it now. |