- Mesa 6.0 DOS/DJGPP Port v1.5
+ Mesa 6.1 DOS/DJGPP Port v1.6
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Description:
~~~~~~~~~~~~
-Well, guess what... this is the DOS port of Mesa 6.0, for DJGPP fans... Whoa!
+Well, guess what... this is the DOS port of Mesa 6.1, for DJGPP fans... Whoa!
The driver has its origins in ddsample.c, written by Brian Paul and found by me
in Mesa 3.4.2.
- removed Matrox Millennium MGA2064W driver
x more changes to the 3dfx driver
+v1.6 (???-2004)
+ * fixed a horrible bug in VGA initialization routine
+
Contact:
*/
/*
- * DOS/DJGPP device driver v1.5 for Mesa
+ * DOS/DJGPP device driver v1.6 for Mesa
*
* Copyright (C) 2002 - Borca Daniel
* Email : dborca@users.sourceforge.net
static vl_mode modes[] = {
- {0x13 | 0x4000, 320, 200, 320, 8, -1, 320*200},
- {0xffff, -1, -1, -1, -1, -1, -1}
+ {
+ /* .xres = */ 320,
+ /* .yres = */ 200,
+ /* .bpp = */ 8,
+ /* .mode = */ 0x13 | 0x4000,
+ /* .scanlen = */ 320,
+ /* .sel = */ -1,
+ /* .gran = */ 320*200
+ },
+ {
+ /* .xres = */ -1,
+ /* .yres = */ -1,
+ /* .bpp = */ -1,
+ /* .mode = */ 0xffff,
+ /* .scanlen = */ -1,
+ /* .sel = */ -1,
+ /* .gran = */ -1
+ }
};
static word16 vga_ver;