1*0c6f7795SAxel Dörfler /* 2*0c6f7795SAxel Dörfler * Copyright 2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3*0c6f7795SAxel Dörfler * Distributed under the terms of the MIT License. 4*0c6f7795SAxel Dörfler */ 5*0c6f7795SAxel Dörfler #ifndef _VGA_H 6*0c6f7795SAxel Dörfler #define _VGA_H 7*0c6f7795SAxel Dörfler 8*0c6f7795SAxel Dörfler 9*0c6f7795SAxel Dörfler #include <vesa_info.h> 10*0c6f7795SAxel Dörfler 11*0c6f7795SAxel Dörfler 12*0c6f7795SAxel Dörfler status_t vga_set_indexed_colors(uint8 first, uint8 *colors, uint16 count); 13*0c6f7795SAxel Dörfler status_t vga_planar_blit(vesa_shared_info *info, uint8 *src, int32 srcBPR, 14*0c6f7795SAxel Dörfler int32 left, int32 top, int32 right, int32 bottom); 15*0c6f7795SAxel Dörfler 16*0c6f7795SAxel Dörfler #endif /* _VGA_H */ 17