limine/common/drivers/gop.h

17 lines
283 B
C
Raw Normal View History

2021-03-02 12:23:43 +03:00
#ifndef __DRIVERS__GOP_H__
#define __DRIVERS__GOP_H__
#if uefi == 1
2021-03-02 12:23:43 +03:00
#include <stdint.h>
#include <stdbool.h>
#include <efi.h>
#include <lib/fb.h>
bool init_gop(struct fb_info *ret,
uint16_t target_width, uint16_t target_height, uint16_t target_bpp);
#endif
#endif