1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-02-04 07:13:00 +08:00
lvgl/demos/benchmark/lv_demo_benchmark.h

48 lines
733 B
C
Raw Normal View History

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
/** 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);
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*/