diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-01-21 11:53:44 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-02-01 20:37:02 -0500 |
commit | 9961f9958cbc169c531dbdb7c3a8f71d4f79d0c1 (patch) | |
tree | 3d0f86a96d966e42ef476bfb3b6d6808ed7f1eb5 /vgasrc/stdvga.h | |
parent | e6bc4c1c5817e9c2d1f55b5c0ad5167e93aed418 (diff) | |
download | seabios-9961f9958cbc169c531dbdb7c3a8f71d4f79d0c1.tar.gz |
vgabios: Add support for vesa get/set window function.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/stdvga.h')
-rw-r--r-- | vgasrc/stdvga.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vgasrc/stdvga.h b/vgasrc/stdvga.h index cc93f0d9..05f2bf55 100644 --- a/vgasrc/stdvga.h +++ b/vgasrc/stdvga.h @@ -134,6 +134,8 @@ void stdvga_set_active_page(u16 address); void stdvga_set_cursor_pos(u16 address); void stdvga_set_scan_lines(u8 lines); u16 stdvga_get_vde(void); +int stdvga_get_window(struct vgamode_s *vmode_g, int window); +int stdvga_set_window(struct vgamode_s *vmode_g, int window, int val); void stdvga_save_state(u16 seg, struct saveVideoHardware *info); void stdvga_restore_state(u16 seg, struct saveVideoHardware *info); int stdvga_set_mode(struct vgamode_s *vmode_g, int flags); |