aboutsummaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/dev/video/fbdev.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/include/dev/video/fbdev.h b/sys/include/dev/video/fbdev.h
index 123182f..e9c9282 100644
--- a/sys/include/dev/video/fbdev.h
+++ b/sys/include/dev/video/fbdev.h
@@ -32,6 +32,15 @@
#include <sys/types.h>
+#define FBIOCTL_INFO 0x00000000
+
+struct fbdev_info {
+ uint32_t width;
+ uint32_t height;
+ uint32_t pitch;
+ uint32_t bits_per_pixel;
+};
+
struct fbdev {
void *mem;
uint32_t width;