diff options
| author | Pablo MartÃnez | 2025-10-08 04:10:38 +0200 |
|---|---|---|
| committer | GitHub | 2025-10-08 04:10:38 +0200 |
| commit | 0550830909e854d2ac0203905c861a868e82b289 (patch) | |
| tree | 67e5a1ce8e82d1be81f1ee89f175856e1c149aff /docs | |
| parent | 8f86f9794e13b6a2078f07d01ca7529d54dd676e (diff) | |
[QP] Minor cleanup and support for RGB888 surface (#25706)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/quantum_painter.md | 2 |
1 files changed, 2 insertions, 0 deletions
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: |