pub unsafe extern "C" fn esp_lcd_panel_draw_bitmap(
    panel: *mut esp_lcd_panel_t,
    x_start: i32,
    y_start: i32,
    x_end: i32,
    y_end: i32,
    color_data: *const c_void
) -> i32
Expand description

@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] color_data RGB color data that will be dumped to the specific window range @return - ESP_OK on success