rulimine/common/drivers/gop.h

19 lines
310 B
C

#ifndef __DRIVERS__GOP_H__
#define __DRIVERS__GOP_H__
#if uefi == 1
#include <stdint.h>
#include <stdbool.h>
#include <efi.h>
#include <lib/fb.h>
bool init_gop(struct fb_info *ret,
uint64_t target_width, uint64_t target_height, uint16_t target_bpp);
extern bool gop_force_16;
#endif
#endif