From d06eca1772190435e5dcb370db734653d3989bc8 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 24 Apr 2024 19:52:56 -0400 Subject: kernel: fbdev: Add framebuffer ioctl Signed-off-by: Ian Moffett --- sys/include/dev/video/fbdev.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'sys/include/dev/video/fbdev.h') 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 +#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; -- cgit v1.2.3