bevy/crates/bevy_core_pipeline/src
Dimitri Belopopsky 56eb362327
Fix missing explicit lifetime name for copy_deferred_lighting_id name (#10128)
# Objective

On nightly there is a warning on a missing lifetime:

```bash
warning: `&` without an explicit lifetime name cannot be used here
```

The details are in https://github.com/rust-lang/rust/issues/115010, but
the bottom line is that in associated constants elided lifetimes are no
longer allowed to be implicitly defined.

This fixes the only place where it is missing.

## Solution

- Add explicit `'static` lifetime
2023-10-15 14:37:53 +00:00
..
blit Use a single line for of large binding lists (#9849) 2023-09-19 22:17:44 +00:00
bloom Use a single line for of large binding lists (#9849) 2023-09-19 22:17:44 +00:00
contrast_adaptive_sharpening Use a single line for of large binding lists (#9849) 2023-09-19 22:17:44 +00:00
core_2d Automatic batching/instancing of draw commands (#9685) 2023-09-21 22:12:34 +00:00
core_3d Deferred Renderer (#9258) 2023-10-12 22:10:38 +00:00
deferred Fix missing explicit lifetime name for copy_deferred_lighting_id name (#10128) 2023-10-15 14:37:53 +00:00
fullscreen_vertex_shader Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
fxaa Use a single line for of large binding lists (#9849) 2023-09-19 22:17:44 +00:00
prepass Deferred Renderer (#9258) 2023-10-12 22:10:38 +00:00
skybox Deferred Renderer (#9258) 2023-10-12 22:10:38 +00:00
taa Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
tonemapping Use a single line for of large binding lists (#9849) 2023-09-19 22:17:44 +00:00
upscaling Reorder render sets, refactor bevy_sprite to take advantage (#9236) 2023-08-27 14:33:49 +00:00
clear_color.rs Document ClearColorConfig (#9288) 2023-07-29 22:22:49 +00:00
lib.rs Deferred Renderer (#9258) 2023-10-12 22:10:38 +00:00
msaa_writeback.rs Reorder render sets, refactor bevy_sprite to take advantage (#9236) 2023-08-27 14:33:49 +00:00