Skip to content

Commit cc8084c

Browse files
Merge branch 'main' into feature-gate-render-in-ui
2 parents aa697a0 + 651b22f commit cc8084c

File tree

137 files changed

+573
-257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+573
-257
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ jobs:
243243
steps:
244244
- uses: actions/checkout@v4
245245
- name: Check for typos
246-
uses: crate-ci/typos@v1.28.4
246+
uses: crate-ci/typos@v1.29.4
247247
- name: Typos info
248248
if: failure()
249249
run: |

.github/workflows/send-screenshots-to-pixeleagle.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
if: ${{ ! fromJSON(env.PIXELEAGLE_TOKEN_EXISTS) }}
3535
run: |
3636
echo "The PIXELEAGLE_TOKEN secret does not exist, so uploading screenshots to Pixel Eagle was skipped." >> $GITHUB_STEP_SUMMARY
37-
37+
3838
- name: Download artifact
3939
if: ${{ fromJSON(env.PIXELEAGLE_TOKEN_EXISTS) }}
4040
uses: actions/download-artifact@v4
4141
with:
4242
pattern: ${{ inputs.artifact }}
43-
43+
4444
- name: Send to Pixel Eagle
4545
if: ${{ fromJSON(env.PIXELEAGLE_TOKEN_EXISTS) }}
4646
env:
@@ -49,11 +49,11 @@ jobs:
4949
# Create a new run with its associated metadata
5050
metadata='{"os":"${{ inputs.os }}", "commit": "${{ inputs.commit }}", "branch": "${{ inputs.branch }}"}'
5151
run=`curl https://pixel-eagle.vleue.com/$project/runs --json "$metadata" --oauth2-bearer ${{ secrets.PIXELEAGLE_TOKEN }} | jq '.id'`
52-
52+
5353
SAVEIFS=$IFS
54-
54+
5555
cd ${{ inputs.artifact }}
56-
56+
5757
# Read the hashes of the screenshot for fast comparison when they are equal
5858
IFS=$'\n'
5959
# Build a json array of screenshots and their hashes
@@ -67,7 +67,7 @@ jobs:
6767
done
6868
hashes=`echo $hashes | rev | cut -c 2- | rev`
6969
hashes="$hashes]"
70-
70+
7171
IFS=$SAVEIFS
7272
7373
# Upload screenshots with unknown hashes
@@ -78,7 +78,7 @@ jobs:
7878
curl https://pixel-eagle.vleue.com/$project/runs/$run/screenshots -F "data=@./screenshots-$name" -F "screenshot=$name" --oauth2-bearer ${{ secrets.PIXELEAGLE_TOKEN }}
7979
echo
8080
done
81-
81+
8282
IFS=$SAVEIFS
8383
8484
cd ..
@@ -93,17 +93,17 @@ jobs:
9393
missing=`cat pixeleagle.json | jq '.missing | length'`
9494
if [ ! $missing -eq 0 ]; then
9595
echo "There are $missing missing screenshots"
96-
echo "::warning title=$missing missing screenshots on ${{ inputs.os }}::https://pixel-eagle.vleue.com/$project/runs/$run/compare/$compared_with"
96+
echo "::warning title=$missing missing screenshots on ${{ inputs.os }}::https://pixel-eagle.com/project/$project/run/$run/compare/$compared_with"
9797
status=1
9898
fi
9999
100100
diff=`cat pixeleagle.json | jq '.diff | length'`
101101
if [ ! $diff -eq 0 ]; then
102102
echo "There are $diff screenshots with a difference"
103-
echo "::warning title=$diff different screenshots on ${{ inputs.os }}::https://pixel-eagle.vleue.com/$project/runs/$run/compare/$compared_with"
103+
echo "::warning title=$diff different screenshots on ${{ inputs.os }}::https://pixel-eagle.com/project/$project/run/$run/compare/$compared_with"
104104
status=1
105105
fi
106106
107-
echo "created run $run: https://pixel-eagle.vleue.com/$project/runs/$run/compare/$compared_with"
107+
echo "created run $run: https://pixel-eagle.com/project/$project/run/$run/compare/$compared_with"
108108
109109
exit $status

assets/shaders/specialized_mesh_pipeline.wgsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ struct VertexOutput {
3030
fn vertex(vertex: Vertex) -> VertexOutput {
3131
var out: VertexOutput;
3232
// This is how bevy computes the world position
33-
// The vertex.instance_index is very important. Esepecially if you are using batching and gpu preprocessing
33+
// The vertex.instance_index is very important. Especially if you are using batching and gpu preprocessing
3434
var world_from_local = mesh_functions::get_world_from_local(vertex.instance_index);
3535
out.world_position = mesh_functions::mesh_position_local_to_world(world_from_local, vec4(vertex.position, 1.0));
3636
out.clip_position = position_world_to_clip(out.world_position.xyz);

benches/Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,6 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(docsrs_dep)'] }
6060
unsafe_op_in_unsafe_fn = "warn"
6161
unused_qualifications = "warn"
6262

63-
[[bench]]
64-
name = "entity_cloning"
65-
path = "benches/bevy_ecs/entity_cloning.rs"
66-
harness = false
67-
6863
[[bench]]
6964
name = "ecs"
7065
path = "benches/bevy_ecs/main.rs"

0 commit comments

Comments
 (0)