rulimine/common/drivers/gop.h

19 lines
339 B
C
Raw Normal View History

2021-03-02 12:23:43 +03:00
#ifndef __DRIVERS__GOP_H__
#define __DRIVERS__GOP_H__
#if defined (UEFI)
2021-03-02 12:23:43 +03:00
#include <stdint.h>
#include <stddef.h>
2021-03-02 12:23:43 +03:00
#include <stdbool.h>
#include <lib/fb.h>
void init_gop(struct fb_info **ret, size_t *_fbs_count,
2022-05-22 07:38:34 +03:00
uint64_t target_width, uint64_t target_height, uint16_t target_bpp);
2021-03-02 12:23:43 +03:00
extern bool gop_force_16;
2021-03-02 12:23:43 +03:00
#endif
#endif