From: James S. <jsi...@us...> - 2002-03-05 17:14:31
|
Update of /cvsroot/linuxconsole/ruby/linux/include/linux In directory usw-pr-cvs1:/tmp/cvs-serv19726/include/linux Modified Files: fb.h Log Message: MOved to cleaner fbdev api for accel handling. Index: fb.h =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/include/linux/fb.h,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- fb.h 20 Jan 2002 03:54:46 -0000 1.46 +++ fb.h 5 Mar 2002 17:14:28 -0000 1.47 @@ -338,13 +338,11 @@ /* pan display */ int (*fb_pan_display)(struct fb_var_screeninfo *var, struct fb_info *info); /* draws a rectangle */ - void (*fb_fillrect)(struct fb_info *p, int x1, int y1, unsigned int width, - unsigned int height, unsigned long color, int rop); + void (*fb_fillrect)(struct fb_info *info, struct fb_fillrect *rect); /* Copy data from area to another */ - void (*fb_copyarea)(struct fb_info *p, int sx, int sy, unsigned int width, - unsigned int height, int dx, int dy); + void (*fb_copyarea)(struct fb_info *info, struct fb_copyarea *area); /* Draws a image to the display */ - void (*fb_imageblit)(struct fb_info *p, struct fb_image *image); + void (*fb_imageblit)(struct fb_info *info, struct fb_image *image); /* perform polling on fb device */ int (*fb_poll)(struct fb_info *info, poll_table *wait); /* perform fb specific ioctl */ |