diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-04-05 17:11:06 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-04-11 11:26:23 -0400 |
commit | 098c2fc934d0c2539312937e86c135bd8b6c1e1e (patch) | |
tree | 5ea602874b926202782e967507f7f96ed4b2645f /vgasrc/vgabios.h | |
parent | a02d41806e42bf42e55c0147f2ec226ba85219a4 (diff) | |
download | seabios-098c2fc934d0c2539312937e86c135bd8b6c1e1e.tar.gz |
vgabios: Add support for manipulating framebuffers in high memory.
Add code for manipulating "direct" style linear RGB framebuffers that
may be in high memory.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/vgabios.h')
-rw-r--r-- | vgasrc/vgabios.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vgasrc/vgabios.h b/vgasrc/vgabios.h index 73c06974..8fe65d4c 100644 --- a/vgasrc/vgabios.h +++ b/vgasrc/vgabios.h @@ -60,6 +60,7 @@ struct vgamode_s { struct gfx_op { struct vgamode_s *vmode_g; u32 linelength; + u32 displaystart; u8 op; u16 x, y; |