Skip to content

Commit b6a91e5

Browse files
committed
Support 16/32 bit color depth
Mado currently uses 32-bit bpp, supporting display devices on desktop/laptop computers, while Raspberry Pi devices use 16-bit bpp. To improve mado’s compatibility across various Linux framebuffer environments, testing showed that tx->fb_var.bits_per_pixel automatically sets the appropriate bpp without requiring manual configuration.
1 parent efe7d49 commit b6a91e5

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

backend/fbdev.c

-7
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ static bool twin_fbdev_apply_config(twin_fbdev_t *tx)
9999
/* Set the virtual screen size to be the same as the physical screen */
100100
tx->fb_var.xres_virtual = tx->fb_var.xres;
101101
tx->fb_var.yres_virtual = tx->fb_var.yres;
102-
tx->fb_var.bits_per_pixel = 32;
103102
if (ioctl(tx->fb_fd, FBIOPUT_VSCREENINFO, &tx->fb_var) < 0) {
104103
log_error("Failed to set framebuffer mode");
105104
return false;
@@ -111,12 +110,6 @@ static bool twin_fbdev_apply_config(twin_fbdev_t *tx)
111110
return false;
112111
}
113112

114-
/* Check bits per pixel */
115-
if (tx->fb_var.bits_per_pixel != 32) {
116-
log_error("Failed to set framebuffer bpp to 32");
117-
return false;
118-
}
119-
120113
/* Read unchangable information of the framebuffer */
121114
ioctl(tx->fb_fd, FBIOGET_FSCREENINFO, &tx->fb_fix);
122115

0 commit comments

Comments
 (0)