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>
|
2022-10-14 06:17:24 +03:00
|
|
|
#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,
|
2020-11-08 13:59:23 +03:00
|
|
|
uint16_t target_width, uint16_t target_height, uint16_t target_bpp);
|
2020-03-26 05:13:19 +03:00
|
|
|
|
2022-10-14 06:17:24 +03:00
|
|
|
struct fb_info *vbe_get_mode_list(size_t *count);
|
|
|
|
|
2020-03-26 05:13:19 +03:00
|
|
|
#endif
|