2023-11-28 23:47:49 +02:00
|
|
|
#ifndef _FRAMEBUFFER_H
|
|
|
|
#define _FRAMEBUFFER_H 1
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2023-11-29 20:07:33 +02:00
|
|
|
#define BANAN_FB_BPP 32
|
|
|
|
|
2023-11-28 23:47:49 +02:00
|
|
|
struct framebuffer_info_t
|
|
|
|
{
|
|
|
|
uint32_t width;
|
|
|
|
uint32_t height;
|
|
|
|
};
|
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif
|