├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── files-to-c-arrays.py ├── generate-project-files ├── generate-project-files.bat ├── html ├── 2048.png ├── compatibility.js ├── draw-pattern.js ├── gradient.png ├── hardware-latency-test-bookmarklet.js ├── hardware-latency-test.html ├── index.html ├── keep-server-alive.js ├── latency-benchmark.css ├── latency-benchmark.html ├── latency-benchmark.js └── worker.js ├── latency-benchmark.gyp ├── linux-build └── src ├── clioptions.c ├── clioptions.h ├── latency-benchmark.c ├── latency-benchmark.h ├── mac ├── main.m └── screenscraper.m ├── oculus.cpp ├── oculus.h ├── screenscraper.h ├── server.c ├── win ├── getopt.c ├── main.cpp ├── screenscraper.cpp └── stdafx.h └── x11 ├── main.c └── screenscraper.c /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /files-to-c-arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/files-to-c-arrays.py -------------------------------------------------------------------------------- /generate-project-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/generate-project-files -------------------------------------------------------------------------------- /generate-project-files.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/generate-project-files.bat -------------------------------------------------------------------------------- /html/2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/2048.png -------------------------------------------------------------------------------- /html/compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/compatibility.js -------------------------------------------------------------------------------- /html/draw-pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/draw-pattern.js -------------------------------------------------------------------------------- /html/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/gradient.png -------------------------------------------------------------------------------- /html/hardware-latency-test-bookmarklet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/hardware-latency-test-bookmarklet.js -------------------------------------------------------------------------------- /html/hardware-latency-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/hardware-latency-test.html -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/index.html -------------------------------------------------------------------------------- /html/keep-server-alive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/keep-server-alive.js -------------------------------------------------------------------------------- /html/latency-benchmark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/latency-benchmark.css -------------------------------------------------------------------------------- /html/latency-benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/latency-benchmark.html -------------------------------------------------------------------------------- /html/latency-benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/latency-benchmark.js -------------------------------------------------------------------------------- /html/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/html/worker.js -------------------------------------------------------------------------------- /latency-benchmark.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/latency-benchmark.gyp -------------------------------------------------------------------------------- /linux-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/linux-build -------------------------------------------------------------------------------- /src/clioptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/clioptions.c -------------------------------------------------------------------------------- /src/clioptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/clioptions.h -------------------------------------------------------------------------------- /src/latency-benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/latency-benchmark.c -------------------------------------------------------------------------------- /src/latency-benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/latency-benchmark.h -------------------------------------------------------------------------------- /src/mac/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/mac/main.m -------------------------------------------------------------------------------- /src/mac/screenscraper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/mac/screenscraper.m -------------------------------------------------------------------------------- /src/oculus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/oculus.cpp -------------------------------------------------------------------------------- /src/oculus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/oculus.h -------------------------------------------------------------------------------- /src/screenscraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/screenscraper.h -------------------------------------------------------------------------------- /src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/server.c -------------------------------------------------------------------------------- /src/win/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/win/getopt.c -------------------------------------------------------------------------------- /src/win/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/win/main.cpp -------------------------------------------------------------------------------- /src/win/screenscraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/win/screenscraper.cpp -------------------------------------------------------------------------------- /src/win/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/win/stdafx.h -------------------------------------------------------------------------------- /src/x11/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/x11/main.c -------------------------------------------------------------------------------- /src/x11/screenscraper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/latency-benchmark/HEAD/src/x11/screenscraper.c --------------------------------------------------------------------------------