├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── RELEASING.md ├── content └── screenshot.png ├── examples ├── 2d_egui.rs ├── bevy_ui.rs ├── deband_dither.rs ├── egui.rs ├── immediate.rs ├── no_regions.rs ├── settings.rs └── utils.rs ├── rust-toolchain ├── rustfmt.toml └── src ├── bevy_ui.rs ├── core.rs ├── egui.rs ├── lib.rs ├── shader.rs └── shader.wgsl /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/RELEASING.md -------------------------------------------------------------------------------- /content/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/content/screenshot.png -------------------------------------------------------------------------------- /examples/2d_egui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/examples/2d_egui.rs -------------------------------------------------------------------------------- /examples/bevy_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/examples/bevy_ui.rs -------------------------------------------------------------------------------- /examples/deband_dither.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/examples/deband_dither.rs -------------------------------------------------------------------------------- /examples/egui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/examples/egui.rs -------------------------------------------------------------------------------- /examples/immediate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/examples/immediate.rs -------------------------------------------------------------------------------- /examples/no_regions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/examples/no_regions.rs -------------------------------------------------------------------------------- /examples/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/examples/settings.rs -------------------------------------------------------------------------------- /examples/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/examples/utils.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly 2 | -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/bevy_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/src/bevy_ui.rs -------------------------------------------------------------------------------- /src/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/src/core.rs -------------------------------------------------------------------------------- /src/egui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/src/egui.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/shader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/src/shader.rs -------------------------------------------------------------------------------- /src/shader.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atbentley/bevy_blur_regions/HEAD/src/shader.wgsl --------------------------------------------------------------------------------