From 0550830909e854d2ac0203905c861a868e82b289 Mon Sep 17 00:00:00 2001 From: Pablo Martínez Date: Wed, 8 Oct 2025 04:10:38 +0200 Subject: [QP] Minor cleanup and support for RGB888 surface (#25706) Co-authored-by: Drashna Jaelre --- docs/quantum_painter.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'docs/quantum_painter.md') diff --git a/docs/quantum_painter.md b/docs/quantum_painter.md index bbe8944516..fbc72cb053 100644 --- a/docs/quantum_painter.md +++ b/docs/quantum_painter.md @@ -534,6 +534,8 @@ QUANTUM_PAINTER_DRIVERS += surface Creating a surface in firmware can then be done with the following APIs: ```c +// 24bpp RGB888 surface: +painter_device_t qp_make_rgb888_surface(uint16_t panel_width, uint16_t panel_height, void *buffer); // 16bpp RGB565 surface: painter_device_t qp_make_rgb565_surface(uint16_t panel_width, uint16_t panel_height, void *buffer); // 1bpp monochrome surface: -- cgit v1.2.3