2009-08-18 Pavel Roskin <proski@gnu.org>

* include/grub/fbfill.h (struct grub_video_fbrender_target): Use
	grub_uint8_t pointer for data.
	* include/grub/fbutil.h (struct grub_video_fbblit_info):
	Likewise.
	* video/fb/fbutil.c: Remove unnecessary casts.
This commit is contained in:
proski 2009-08-18 17:26:35 +00:00
parent 19f1b335c3
commit b7da6babe8
4 changed files with 16 additions and 18 deletions

View file

@ -44,7 +44,7 @@ struct grub_video_fbrender_target
/* Pointer to data. Can either be in video card memory or in local host's
memory. */
void *data;
grub_uint8_t *data;
};
void

View file

@ -28,7 +28,7 @@
struct grub_video_fbblit_info
{
struct grub_video_mode_info *mode_info;
void *data;
grub_uint8_t *data;
};
grub_uint8_t *grub_video_fb_get_video_ptr (struct grub_video_fbblit_info *source,