From: James S. <jsi...@us...> - 2001-11-14 22:25:58
|
Update of /cvsroot/linuxconsole/ruby/linux/drivers/video In directory usw-pr-cvs1:/tmp/cvs-serv24506 Modified Files: skeletonfb.c Log Message: More info to educate people. Index: skeletonfb.c =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/video/skeletonfb.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- skeletonfb.c 2001/11/14 21:53:52 1.13 +++ skeletonfb.c 2001/11/14 22:25:55 1.14 @@ -312,7 +312,13 @@ /* * We provide our own functions if we have hardware acceleration - * or non packed pixel format layouts. + * or non packed pixel format layouts. If we have no hardware + * acceleration, we use a generic unaccelerated function. If using + * a pack pixel format just use the functions in cfb*.c. Each file + * has one of the three different accel functions we support. You + * can use these functions as fallbacks if hardware unsupported + * action is requested. Also if you have non pack pixel modes and + * non accelerated cards you have to provide your own functions. */ /** @@ -490,7 +496,7 @@ #ifdef MODULE module_init(xxxfb_init); +#endif module_exit(xxxfb_cleanup); MODULE_LICENSE("GPL"); -#endif /* MODULE */ |