1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-10-31 07:04:17 +00:00

Revent: Added support for Vsync timings.

Updated revent to use timing information provided from VSync service
running on android to try and improve timing accuracy.
Revent now takes `-V` parameter for both the record and replay command to indicate that the VSync service should be used.
This commit is contained in:
Marc Bonnici
2017-01-31 17:32:25 +00:00
parent d6eb8b6faf
commit a81fe5555a
4 changed files with 354 additions and 48 deletions

View File

@@ -1,6 +1,7 @@
# CROSS_COMPILE=aarch64-linux-gnu- make
#
CC=gcc
LIBFLAGS= -lm
ifdef DEBUG
CFLAGS=-static -lc -g
@@ -9,7 +10,7 @@ else
endif
revent: revent.c
$(CROSS_COMPILE)$(CC) $(CFLAGS) revent.c -o revent
$(CROSS_COMPILE)$(CC) $(CFLAGS) revent.c -o revent $(LIBFLAGS)
clean:
rm -rf revent