2021-12-16 20:49:41 +01:00
|
|
|
/**
|
|
|
|
* @file lv_demo_benchmark.h
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LV_DEMO_BENCHMARK_H
|
|
|
|
#define LV_DEMO_BENCHMARK_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
|
|
|
#include "../lv_demos.h"
|
|
|
|
|
2023-10-25 12:19:39 +02:00
|
|
|
#if LV_USE_DEMO_BENCHMARK
|
|
|
|
|
2021-12-16 20:49:41 +01:00
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL PROTOTYPES
|
|
|
|
**********************/
|
2023-10-25 12:19:39 +02:00
|
|
|
|
2023-10-03 08:44:43 +01:00
|
|
|
/** Run all test scenes in the LVGL benchmark with a given mode
|
|
|
|
*/
|
|
|
|
|
2023-10-25 12:19:39 +02:00
|
|
|
void lv_demo_benchmark(void);
|
2022-05-24 18:36:22 +08:00
|
|
|
|
2021-12-16 20:49:41 +01:00
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
2023-10-25 12:19:39 +02:00
|
|
|
#endif /*LV_USE_DEMO_BENCHMARK*/
|
|
|
|
|
2021-12-16 20:49:41 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /*LV_DEMO_BENCHMARK_H*/
|