mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-10 04:43:33 +00:00
feat(mipi_dsi): support multiple frame buffers
This commit is contained in:
@@ -49,10 +49,10 @@ struct esp_lcd_panel_t {
|
||||
* @brief Draw bitmap on LCD panel
|
||||
*
|
||||
* @param[in] panel LCD panel handle, which is created by other factory API like `esp_lcd_new_panel_st7789()`
|
||||
* @param[in] x_start Start index on x-axis (x_start included)
|
||||
* @param[in] y_start Start index on y-axis (y_start included)
|
||||
* @param[in] x_end End index on x-axis (x_end not included)
|
||||
* @param[in] y_end End index on y-axis (y_end not included)
|
||||
* @param[in] x_start Start pixel index in the target frame buffer, on x-axis (x_start is included)
|
||||
* @param[in] y_start Start pixel index in the target frame buffer, on y-axis (y_start is included)
|
||||
* @param[in] x_end End pixel index in the target frame buffer, on x-axis (x_end is not included)
|
||||
* @param[in] y_end End pixel index in the target frame buffer, on y-axis (y_end is not included)
|
||||
* @param[in] color_data RGB color data that will be dumped to the specific window range
|
||||
* @return
|
||||
* - ESP_OK on success
|
||||
|
Reference in New Issue
Block a user