mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@697 f158a5a8-5612-0410-a976-696ce0be7e32
12 lines
325 B
C
12 lines
325 B
C
#ifndef VIDEO_SUBR_H
|
|
#define VIDEO_SUBR_H
|
|
|
|
/* packages/video.c */
|
|
int video_get_res(int *w, int *h);
|
|
void draw_pixel(int x, int y, int colind);
|
|
void set_color(int ind, unsigned long color);
|
|
void video_scroll(int height);
|
|
void init_video(unsigned long fb, int width, int height, int depth, int rb);
|
|
|
|
#endif /* VIDEO_SUBR_H */
|