├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml └── workflows │ └── build.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── core ├── Cargo.toml ├── cbindgen.toml ├── latencyflex2.h └── src │ ├── dx12 │ ├── entrypoint.rs │ └── mod.rs │ ├── entrypoint.rs │ ├── ewma.rs │ ├── fence_worker.rs │ ├── lib.rs │ ├── profiler.rs │ ├── time │ ├── mod.rs │ ├── unix.rs │ └── windows.rs │ └── vulkan │ ├── entrypoint.rs │ └── mod.rs ├── docs ├── .gitignore ├── .vitepress │ ├── config.js │ └── theme │ │ ├── custom.css │ │ └── index.js ├── ea.md ├── index.md ├── public │ └── files │ │ └── EnableSignatureOverride.reg └── shim │ ├── building.md │ └── installing.md ├── package.json └── pnpm-lock.yaml /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /target 3 | /Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/README.md -------------------------------------------------------------------------------- /core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/Cargo.toml -------------------------------------------------------------------------------- /core/cbindgen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/cbindgen.toml -------------------------------------------------------------------------------- /core/latencyflex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/latencyflex2.h -------------------------------------------------------------------------------- /core/src/dx12/entrypoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/dx12/entrypoint.rs -------------------------------------------------------------------------------- /core/src/dx12/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/dx12/mod.rs -------------------------------------------------------------------------------- /core/src/entrypoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/entrypoint.rs -------------------------------------------------------------------------------- /core/src/ewma.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/ewma.rs -------------------------------------------------------------------------------- /core/src/fence_worker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/fence_worker.rs -------------------------------------------------------------------------------- /core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/lib.rs -------------------------------------------------------------------------------- /core/src/profiler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/profiler.rs -------------------------------------------------------------------------------- /core/src/time/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/time/mod.rs -------------------------------------------------------------------------------- /core/src/time/unix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/time/unix.rs -------------------------------------------------------------------------------- /core/src/time/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/time/windows.rs -------------------------------------------------------------------------------- /core/src/vulkan/entrypoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/vulkan/entrypoint.rs -------------------------------------------------------------------------------- /core/src/vulkan/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/core/src/vulkan/mod.rs -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.vitepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/docs/.vitepress/config.js -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/docs/.vitepress/theme/index.js -------------------------------------------------------------------------------- /docs/ea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/docs/ea.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/public/files/EnableSignatureOverride.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/docs/public/files/EnableSignatureOverride.reg -------------------------------------------------------------------------------- /docs/shim/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/docs/shim/building.md -------------------------------------------------------------------------------- /docs/shim/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/docs/shim/installing.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishitatsuyuki/latencyflex2/HEAD/pnpm-lock.yaml --------------------------------------------------------------------------------