| 1 | #ifndef DRIVERS__GOP_H__ |
| 2 | #define DRIVERS__GOP_H__ |
| 3 | |
| 4 | #if defined (UEFI) |
| 5 | |
| 6 | #include <stdint.h> |
| 7 | #include <stddef.h> |
| 8 | #include <stdbool.h> |
| 9 | #include <lib/fb.h> |
| 10 | |
| 11 | void init_gop(struct fb_info **ret, size_t *_fbs_count, |
| 12 | uint64_t target_width, uint64_t target_height, uint16_t target_bpp); |
| 13 | |
| 14 | extern bool gop_force_16; |
| 15 | |
| 16 | #endif |
| 17 | |
| 18 | #endif |
