 6038d1599e
			
		
	
	
		6038d1599e
		
			
		
	
	
	
	
		
			
			# Objective - CI on main has been failing since #13640 was merged. - Here's the [offending run](https://github.com/bevyengine/bevy/actions/runs/9352635857/job/25741242787). - One of the patch files is out of date, so it failed in the validation check. ## Solution - Regenerate the patch file. (The location has been moved to `cluster/mod.rs`.) ## Testing - Run `git apply tools/example-showcase/reduce-light-cluster-config.patch` - It should change `bevy_pbr/src/cluster/mod.rs` on line 239, decreasing `total` and `z_slices`. - CI's validation checks should also verify that this works, though only after it gets merged.
		
			
				
	
	
		
			16 lines
		
	
	
		
			647 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			647 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| diff --git a/crates/bevy_pbr/src/cluster/mod.rs b/crates/bevy_pbr/src/cluster/mod.rs
 | |
| index a8c218b44..13cc9f9c6 100644
 | |
| --- a/crates/bevy_pbr/src/cluster/mod.rs
 | |
| +++ b/crates/bevy_pbr/src/cluster/mod.rs
 | |
| @@ -239,8 +239,8 @@ impl Default for ClusterConfig {
 | |
|          // 24 depth slices, square clusters with at most 4096 total clusters
 | |
|          // use max light distance as clusters max `Z`-depth, first slice extends to 5.0
 | |
|          Self::FixedZ {
 | |
| -            total: 4096,
 | |
| -            z_slices: 24,
 | |
| +            total: 128,
 | |
| +            z_slices: 4,
 | |
|              z_config: ClusterZConfig::default(),
 | |
|              dynamic_resizing: true,
 | |
|          }
 |