aboutsummaryrefslogtreecommitdiffstats
path: root/vgasrc/swcursor.c
Commit message (Collapse)AuthorAgeFilesLines
* vgautil: Add new header file with misc function and variable definitionsKevin O'Connor2016-08-051-0/+1
| | | | | | | | Move the generic function and variable definitions from vgabios.h to a new file vgautil.h. This reduces the size and complexity of vgabios.h. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* vgafb: Move header definitions from vgabios.h to new file vgafb.hKevin O'Connor2016-08-041-1/+2
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* swcursor: Concentrate swcursor logic in swcursor.cKevin O'Connor2016-08-041-4/+33
| | | | | | | | The software cursor code is not frequently used (only the coreboot framebuffer vga code uses it). Move its logic out of the main code and into swcursor.c. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* swcursor: Move swcursor code from vgafb.c to new file swcursor.cKevin O'Connor2016-08-041-0/+65
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>