├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── crates ├── egui_render_glow │ ├── Cargo.toml │ ├── egui.vert │ ├── egui_linear_output.frag │ ├── egui_srgb_output.frag │ └── src │ │ ├── helpers.rs │ │ └── lib.rs ├── egui_render_three_d │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── egui_render_wgpu │ ├── Cargo.toml │ ├── blit.wgsl │ ├── egui.wgsl │ └── src │ │ ├── lib.rs │ │ ├── painter.rs │ │ └── surface.rs └── egui_window_glfw_passthrough │ ├── Cargo.toml │ ├── README.md │ └── src │ └── lib.rs ├── examples ├── basic │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── icon │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── kitty_icon.png └── triangle │ ├── Cargo.toml │ └── src │ └── main.rs └── src └── lib.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.idea 3 | /egui_overlay.iml 4 | /Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/README.md -------------------------------------------------------------------------------- /crates/egui_render_glow/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_glow/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_render_glow/egui.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_glow/egui.vert -------------------------------------------------------------------------------- /crates/egui_render_glow/egui_linear_output.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_glow/egui_linear_output.frag -------------------------------------------------------------------------------- /crates/egui_render_glow/egui_srgb_output.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_glow/egui_srgb_output.frag -------------------------------------------------------------------------------- /crates/egui_render_glow/src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_glow/src/helpers.rs -------------------------------------------------------------------------------- /crates/egui_render_glow/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_glow/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_render_three_d/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_three_d/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_render_three_d/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_three_d/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_render_wgpu/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_wgpu/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_render_wgpu/blit.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_wgpu/blit.wgsl -------------------------------------------------------------------------------- /crates/egui_render_wgpu/egui.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_wgpu/egui.wgsl -------------------------------------------------------------------------------- /crates/egui_render_wgpu/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_wgpu/src/lib.rs -------------------------------------------------------------------------------- /crates/egui_render_wgpu/src/painter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_wgpu/src/painter.rs -------------------------------------------------------------------------------- /crates/egui_render_wgpu/src/surface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_render_wgpu/src/surface.rs -------------------------------------------------------------------------------- /crates/egui_window_glfw_passthrough/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_window_glfw_passthrough/Cargo.toml -------------------------------------------------------------------------------- /crates/egui_window_glfw_passthrough/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_window_glfw_passthrough/README.md -------------------------------------------------------------------------------- /crates/egui_window_glfw_passthrough/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/crates/egui_window_glfw_passthrough/src/lib.rs -------------------------------------------------------------------------------- /examples/basic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/examples/basic/Cargo.toml -------------------------------------------------------------------------------- /examples/basic/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/examples/basic/src/main.rs -------------------------------------------------------------------------------- /examples/icon/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/examples/icon/Cargo.toml -------------------------------------------------------------------------------- /examples/icon/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/examples/icon/src/main.rs -------------------------------------------------------------------------------- /examples/kitty_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/examples/kitty_icon.png -------------------------------------------------------------------------------- /examples/triangle/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/examples/triangle/Cargo.toml -------------------------------------------------------------------------------- /examples/triangle/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/examples/triangle/src/main.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderedart/egui_overlay/HEAD/src/lib.rs --------------------------------------------------------------------------------