1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

lv_refr: comment update

This commit is contained in:
Kiss-Vamosi Gabor 2017-07-07 18:47:48 +02:00
parent dcb77a59c7
commit 6b711b759c

View File

@ -126,6 +126,9 @@ void lv_inv_area(const area_t * area_p)
/**
* Set a function to call after every refresh to announce the refresh time and the number of refreshed pixels
* @param cb pointer to a callback function (void my_refr_cb(uint32_t time_ms, uint32_t px_num))
* time_ms: refresh time in [ms]
* px_num: not the drawn pixels but the number of affected pixels of the screen
* (more pixels are drawn with opacity areas)
*/
void lv_refr_set_monitor_cb(void (*cb)(uint32_t, uint32_t))
{