/* $XFree86: xc/programs/Xserver/hw/xfree86/common/XF86_TGA.c,v 3.1 1996/09/29 13:35:44 dawes Exp $ */ #include "X.h" #include "os.h" #define _NO_XF86_PROTOTYPES #include "xf86.h" #include "xf86_Config.h" extern ScrnInfoRec tgaInfoRec; /* * This limit is currently set to 80MHz because this is the limit of many * ramdacs when running in 1:1 mode. It will be increased when support * is added for using the ramdacs in 2:1 mode. Increasing this limit * could result in damage to your hardware. */ #define TGA_MAX_CLOCK 135000 int tgaMaxClock = TGA_MAX_CLOCK; ScrnInfoPtr xf86Screens[] = { &tgaInfoRec, }; int xf86MaxScreens = sizeof(xf86Screens) / sizeof(ScrnInfoPtr); int xf86ScreenNames[] = { ACCEL, -1 }; int tgaValidTokens[] = { STATICGRAY, GRAYSCALE, STATICCOLOR, PSEUDOCOLOR, TRUECOLOR, DIRECTCOLOR, CHIPSET, CLOCKS, MODES, OPTION, VIDEORAM, VIEWPORT, VIRTUAL, CLOCKPROG, BIOSBASE, MEMBASE, -1 }; #include "xf86ExtInit.h"