diff options
author | Ian Moffett <ian@osmora.org> | 2025-04-18 21:35:46 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-04-18 21:35:46 -0400 |
commit | 776923710d509a04ccc082c1f8dbc6b0c10b3910 (patch) | |
tree | bd97d035fe0a2588b4b34bc8567669608625f75e /sys/include/dev | |
parent | efca7154774baf5235bf0c379e265334f34c0127 (diff) |
kernel: video: Add bpp field to fbdev
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/dev')
-rw-r--r-- | sys/include/dev/video/fbdev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/dev/video/fbdev.h b/sys/include/dev/video/fbdev.h index d23fcd6..c80fd92 100644 --- a/sys/include/dev/video/fbdev.h +++ b/sys/include/dev/video/fbdev.h @@ -38,6 +38,7 @@ struct fbdev { uint32_t width; uint32_t height; uint32_t pitch; + uint32_t bpp; }; /* |