├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .rustfmt.toml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── load-minimal.rs ├── wayland-dynamic.rs └── wayland-static.rs ├── shell-wayland.nix ├── shell.nix └── src └── lib.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: thaudebourg 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | .vscode 5 | settings.json -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- 1 | hard_tabs = true -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/README.md -------------------------------------------------------------------------------- /examples/load-minimal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/examples/load-minimal.rs -------------------------------------------------------------------------------- /examples/wayland-dynamic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/examples/wayland-dynamic.rs -------------------------------------------------------------------------------- /examples/wayland-static.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/examples/wayland-static.rs -------------------------------------------------------------------------------- /shell-wayland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/shell-wayland.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/shell.nix -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothee-haudebourg/khronos-egl/HEAD/src/lib.rs --------------------------------------------------------------------------------