diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2024-03-15 19:50:29 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-03-15 19:50:29 -0400 |
commit | 1588fd1437960d94cadc30c42243671e8c0f1281 (patch) | |
tree | 0cf7998bd5397998f27af9291b078cde5ba3e603 /vgasrc/stdvga.h | |
parent | d73e18bb70f8bf0c6fd405900dd267948dd6c3b2 (diff) | |
download | seabios-1588fd1437960d94cadc30c42243671e8c0f1281.tar.gz |
vgasrc: Rename vgahw_get_linesize() to vgahw_minimum_linelength()
Make the relationship between vgahw_get_linelength() and
vgahw_get_linesize() more clear by renaming it to
vgahw_minimum_linelength().
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/stdvga.h')
-rw-r--r-- | vgasrc/stdvga.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vgasrc/stdvga.h b/vgasrc/stdvga.h index 5164ca1b..ce797836 100644 --- a/vgasrc/stdvga.h +++ b/vgasrc/stdvga.h @@ -68,6 +68,7 @@ void stdvga_set_scan_lines(u8 lines); u16 stdvga_get_vde(void); int stdvga_get_window(struct vgamode_s *curmode_g, int window); int stdvga_set_window(struct vgamode_s *curmode_g, int window, int val); +int stdvga_minimum_linelength(struct vgamode_s *vmode_g); int stdvga_get_linelength(struct vgamode_s *curmode_g); int stdvga_set_linelength(struct vgamode_s *curmode_g, int val); int stdvga_get_displaystart(struct vgamode_s *curmode_g); |