├── .clang-format ├── .github └── workflows │ ├── build.yaml │ ├── filename.yaml │ ├── formatting.yaml │ └── publish.yaml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── CMakeLists.txt ├── LICENSE ├── README.md ├── resources ├── gsynctoggle.ico ├── vsynctoggle.ico └── windows.rc └── src ├── CMakeLists.txt └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/filename.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/.github/workflows/filename.yaml -------------------------------------------------------------------------------- /.github/workflows/formatting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/.github/workflows/formatting.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | #external 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/README.md -------------------------------------------------------------------------------- /resources/gsynctoggle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/resources/gsynctoggle.ico -------------------------------------------------------------------------------- /resources/vsynctoggle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/resources/vsynctoggle.ico -------------------------------------------------------------------------------- /resources/windows.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/resources/windows.rc -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanderfrangos/vsync-toggle/HEAD/src/main.cpp --------------------------------------------------------------------------------