From: Albert H. <he...@us...> - 2006-03-24 22:20:35
|
Update of /cvsroot/gc-linux/linux/include/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22880/include/linux Modified Files: fb.h Log Message: Rewrote the framebuffer driver. Made the GX stuff optional (also saves GX reserved mem if not compiled in). Index: fb.h =================================================================== RCS file: /cvsroot/gc-linux/linux/include/linux/fb.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- fb.h 24 Mar 2006 21:45:19 -0000 1.17 +++ fb.h 24 Mar 2006 22:20:16 -0000 1.18 @@ -35,10 +35,17 @@ #define FBIOGET_HWCINFO 0x4616 #define FBIOPUT_MODEINFO 0x4617 #define FBIOGET_DISPINFO 0x4618 + +#ifdef CONFIG_FB_GAMECUBE #define FBIOWAITRETRACE 0x4619 +#define FBIOFLIPHACK 0x4623 +#endif /* CONFIG_FB_GAMECUBE */ + +#ifdef CONFIG_FB_GAMECUBE_GX #define FBIOWAITPEFINISH 0x4620 #define FBIOVIRTTOPHYS 0x4621 #define FBIOFLIP 0x4622 +#endif /* CONFIG_FB_GAMECUBE_GX */ #define FB_TYPE_PACKED_PIXELS 0 /* Packed Pixels */ #define FB_TYPE_PLANES 1 /* Non interleaved planes */ |