/* $XFree86: xc/programs/Xserver/hw/xfree86/accel/mach8/mach8scrin.c,v 3.6 1996/12/23 06:40:09 dawes Exp $ */ /************************************************************ Copyright 1987 by Sun Microsystems, Inc. Mountain View, CA. All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright no- tice appear in all copies and that both that copyright no- tice and this permission notice appear in supporting docu- mentation, and that the names of Sun or X Consortium not be used in advertising or publicity pertaining to distribution of the software without specific prior written permission. Sun and X Consortium make no representations about the suitability of this software for any purpose. It is provided "as is" without any express or implied warranty. SUN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FIT- NESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SUN BE LI- ABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Modified for the 8514/A by Kevin E. Martin (martin@cs.unc.edu) KEVIN E. MARTIN AND RICKARD E. FAITH DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL KEVIN E. MARTIN OR RICKARD E. FAITH BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Modified for the Mach-8 by Rickard E. Faith (faith@cs.unc.edu) ********************************************************/ /* $XConsortium: mach8scrin.c /main/7 1996/02/21 17:31:11 kaleb $ */ #include "X.h" #include "Xmd.h" #include "servermd.h" #include "scrnintstr.h" #include "pixmapstr.h" #include "resource.h" #include "colormap.h" #include "colormapst.h" #include "cfb.h" #include "mi.h" #include "mistruct.h" #include "dix.h" #include "cfbmskbits.h" #include "mibstore.h" #include "mach8.h" #include "xf86Priv.h" extern RegionPtr mfbPixmapToRegion(); extern Bool mfbAllocatePrivates(); extern Bool mfbRegisterCopyPlaneProc(); extern Bool miScreenInit(); extern int defaultColorVisualClass; #define _BP 6 /**** VGA ****/ #define _RZ ((PSZ + 2) / 3) #define _RS 0 #define _RM ((1 << _RZ) - 1) #define _GZ ((PSZ - _RZ + 1) / 2) #define _GS _RZ #define _GM (((1 << _GZ) - 1) << _GS) #define _BZ (PSZ - _RZ - _GZ) #define _BS (_RZ + _GZ) #define _BM (((1 << _BZ) - 1) << _BS) #define _CE (1 << _RZ) static VisualRec visuals[] = { /* vid class bpRGB cmpE nplan rMask gMask bMask oRed oGreen oBlue */ 0, PseudoColor, _BP, 1<= NUMVISUALS) i = 0; } pScreen->defColormap = FakeClientID(0); pScreen->whitePixel = (Pixel) 1; pScreen->blackPixel = (Pixel) 0; XF86FLIP_PIXELS(); pScreen->QueryBestSize = mfbQueryBestSize; /* SaveScreen */ pScreen->GetImage = mach8GetImage; pScreen->GetSpans = mach8GetSpans; pScreen->CreateWindow = cfbCreateWindow; pScreen->DestroyWindow = cfbDestroyWindow; pScreen->PositionWindow = cfbPositionWindow; pScreen->ChangeWindowAttributes = cfbChangeWindowAttributes; pScreen->RealizeWindow = cfbMapWindow; pScreen->UnrealizeWindow = cfbUnmapWindow; pScreen->PaintWindowBackground = miPaintWindow; pScreen->PaintWindowBorder = miPaintWindow; pScreen->CopyWindow = mach8CopyWindow; pScreen->CreatePixmap = cfbCreatePixmap; pScreen->DestroyPixmap = cfbDestroyPixmap; pScreen->RealizeFont = mach8RealizeFont; pScreen->UnrealizeFont = mach8UnrealizeFont; pScreen->CreateGC = mach8CreateGC; pScreen->CreateColormap = cfbInitializeColormap; pScreen->DestroyColormap = (void (*)())NoopDDA; pScreen->InstallColormap = mach8InstallColormap; pScreen->UninstallColormap = mach8UninstallColormap; pScreen->ListInstalledColormaps = mach8ListInstalledColormaps; pScreen->StoreColors = mach8StoreColors; pScreen->ResolveColor = cfbResolveColor; pScreen->BitmapToRegion = mfbPixmapToRegion; mfbRegisterCopyPlaneProc (pScreen, miCopyPlane); return miScreenInit(pScreen, pbits, xsize, ysize, dpix, dpiy, width, 8, NUMDEPTHS, depths, visuals[i].vid, NUMVISUALS, visuals, &mach8BSFuncRec); }