├── .gitignore ├── Makefile ├── README.md ├── autoformat.sh ├── backend_flicker.c ├── backend_opencv.cpp ├── backend_v4l.c ├── backend_xcb.c ├── common.c ├── frontend_fb.c ├── frontend_qt.cpp ├── frontend_term.c ├── frontend_wayland.c ├── frontend_wayland_gbm.c ├── frontend_wayland_gl.c ├── frontend_xcb.c └── interface.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/README.md -------------------------------------------------------------------------------- /autoformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/autoformat.sh -------------------------------------------------------------------------------- /backend_flicker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/backend_flicker.c -------------------------------------------------------------------------------- /backend_opencv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/backend_opencv.cpp -------------------------------------------------------------------------------- /backend_v4l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/backend_v4l.c -------------------------------------------------------------------------------- /backend_xcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/backend_xcb.c -------------------------------------------------------------------------------- /common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/common.c -------------------------------------------------------------------------------- /frontend_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/frontend_fb.c -------------------------------------------------------------------------------- /frontend_qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/frontend_qt.cpp -------------------------------------------------------------------------------- /frontend_term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/frontend_term.c -------------------------------------------------------------------------------- /frontend_wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/frontend_wayland.c -------------------------------------------------------------------------------- /frontend_wayland_gbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/frontend_wayland_gbm.c -------------------------------------------------------------------------------- /frontend_wayland_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/frontend_wayland_gl.c -------------------------------------------------------------------------------- /frontend_xcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/frontend_xcb.c -------------------------------------------------------------------------------- /interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstoeckl/latencytool/HEAD/interface.h --------------------------------------------------------------------------------