rulimine/common/drivers/vbe.h

15 lines
314 B
C
Raw Normal View History

2020-03-26 05:13:19 +03:00
#ifndef __DRIVERS__VBE_H__
#define __DRIVERS__VBE_H__
2020-09-02 08:16:05 +03:00
#include <stdint.h>
#include <stddef.h>
2020-09-02 10:55:56 +03:00
#include <stdbool.h>
2021-03-02 08:21:05 +03:00
#include <lib/fb.h>
2020-09-02 08:16:05 +03:00
2021-03-02 08:21:05 +03:00
bool init_vbe(struct fb_info *ret,
uint16_t target_width, uint16_t target_height, uint16_t target_bpp);
2020-03-26 05:13:19 +03:00
struct fb_info *vbe_get_mode_list(size_t *count);
2020-03-26 05:13:19 +03:00
#endif