From 4b6eba9ba252718435330c8b7b078c468941cd26 Mon Sep 17 00:00:00 2001 From: Silas Bartha Date: Tue, 18 Mar 2025 19:39:31 -0400 Subject: [PATCH] Added gitea workflow --- .cargo/config.toml | 2 ++ .gitea/workflows/build.yaml | 25 +++++++++++++++++++++++++ Cargo.toml | 2 +- src/resources.rs | 2 +- 4 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 .cargo/config.toml create mode 100644 .gitea/workflows/build.yaml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..62d8a86 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[profile.dev.package."*"] +opt-level = 2 diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..06dad8b --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,25 @@ +name: Build +on: [push] + +jobs: + Build: + env: + RUNNER_TOOL_CACHE: /toolcache + container: rust:alpine + steps: + - name: Install node + run: apk add nodejs gcc libc-dev pkgconf libx11-dev alsa-lib-dev eudev-dev tar + - name: Check out repository code + uses: actions/checkout@v4 + - name: Restore cache + uses: actions/cache@v4 + with: + path: | + ~/.cargo/bin/ + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + target/ + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + - name: Build + run: cargo build --release diff --git a/Cargo.toml b/Cargo.toml index 5313d59..53353bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_dither_post_process" -version = "0.3.0" +version = "0.3.1" edition = "2021" description = "A post-process black and white ordered dithering effect for the Bevy game engine." license = "0BSD OR MIT OR Apache-2.0" diff --git a/src/resources.rs b/src/resources.rs index df50f61..27fb4db 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -61,7 +61,7 @@ impl FromWorld for DitherPostProcessPipeline { shader_defs: vec![], entry_point: "fragment".into(), targets: vec![Some(ColorTargetState { - format: TextureFormat::bevy_default(), + format: TextureFormat::Rgba8UnormSrgb, blend: None, write_mask: ColorWrites::ALL, })],