mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
48 lines
733 B
C
48 lines
733 B
C
/**
|
|
* @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"
|
|
|
|
#if LV_USE_DEMO_BENCHMARK
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
|
|
/** Run all test scenes in the LVGL benchmark with a given mode
|
|
*/
|
|
|
|
void lv_demo_benchmark(void);
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#endif /*LV_USE_DEMO_BENCHMARK*/
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /*LV_DEMO_BENCHMARK_H*/
|