Files
Limine/common/drivers/gop.h
2026-03-30 19:44:19 +02:00

20 lines
371 B
C

#ifndef DRIVERS__GOP_H__
#define DRIVERS__GOP_H__
#if defined (UEFI)
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <lib/fb.h>
void init_gop(struct fb_info **ret, size_t *_fbs_count,
uint64_t target_width, uint64_t target_height, uint16_t target_bpp,
bool preserve_screen);
extern bool gop_force_16;
#endif
#endif