blob: 150f16cc047adf6ae723f05c929f1bdd60d7f4f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#include "display.h"
#include "clock.h"
#include "logger.h"
#include "system.h"
int main(int argc, char *argv[])
{
Size fps, FPS;
long timeOld, time;
timeOld = clock_get_us();
time = 0;
fps = 0;
FPS = 0;
if( logger_init() ) {
return EXIT_FAILURE;
}
if( display_init() ) {
return EXIT_FAILURE;
}
while(1)
{
display_vtswitcher_poll(1);
if( __display.active )
{
__display.surface.data[10] = GREEN;
display_flip();
}
time += clock_get_us() - timeOld;
timeOld = clock_get_us();
if(time >= 1000000)
{
logi("FPS: %d", FPS);
FPS = fps;
time = 0;
fps = 0;
}
++fps;
}
display_term();
logger_term();
return EXIT_SUCCESS;
}
|