bevy/crates/bevy_core_pipeline/src
JMS55 4f20faaa43
Meshlet rendering (initial feature) (#10164)
# Objective
- Implements a more efficient, GPU-driven
(https://github.com/bevyengine/bevy/issues/1342) rendering pipeline
based on meshlets.
- Meshes are split into small clusters of triangles called meshlets,
each of which acts as a mini index buffer into the larger mesh data.
Meshlets can be compressed, streamed, culled, and batched much more
efficiently than monolithic meshes.


![image](https://github.com/bevyengine/bevy/assets/47158642/cb2aaad0-7a9a-4e14-93b0-15d4e895b26a)

![image](https://github.com/bevyengine/bevy/assets/47158642/7534035b-1eb7-4278-9b99-5322e4401715)

# Misc
* Future work: https://github.com/bevyengine/bevy/issues/11518
* Nanite reference:
https://advances.realtimerendering.com/s2021/Karis_Nanite_SIGGRAPH_Advances_2021_final.pdf
Two pass occlusion culling explained very well:
https://medium.com/@mil_kru/two-pass-occlusion-culling-4100edcad501

---------

Co-authored-by: Ricky Taylor <rickytaylor26@gmail.com>
Co-authored-by: vero <email@atlasdostal.com>
Co-authored-by: François <mockersf@gmail.com>
Co-authored-by: atlas dostal <rodol@rivalrebels.com>
2024-03-25 19:08:27 +00:00
..
blit resolve all internal ambiguities (#10411) 2024-01-09 19:08:15 +00:00
bloom Add pipeline statistics (#9135) 2024-03-17 20:29:35 +00:00
contrast_adaptive_sharpening Check cfg during CI and fix feature typos (#12103) 2024-02-25 15:19:27 +00:00
core_2d Explain Camera2dBundle.projection needs to be set carefully (#11115) 2024-03-18 17:35:33 +00:00
core_3d Add pipeline statistics (#9135) 2024-03-17 20:29:35 +00:00
deferred Disentangle bevy_utils/bevy_core's reexported dependencies (#12313) 2024-03-07 02:30:15 +00:00
fullscreen_vertex_shader Bevy Asset V2 (#8624) 2023-09-07 02:07:27 +00:00
fxaa Clean up type registrations (#12314) 2024-03-06 16:05:53 +00:00
prepass Add pipeline statistics (#9135) 2024-03-17 20:29:35 +00:00
skybox Pad SkyUniforms to 16 bytes for WASM (#12078) 2024-02-24 07:46:00 +00:00
taa Rename Core Render Graph Labels (#11882) 2024-02-15 23:15:16 +00:00
tonemapping Replace bevy_log's tracing reexport with bevy_utils' (#12254) 2024-03-02 18:38:04 +00:00
upscaling Async pipeline compilation (#10812) 2024-02-05 13:50:50 +00:00
lib.rs Meshlet rendering (initial feature) (#10164) 2024-03-25 19:08:27 +00:00
msaa_writeback.rs Port bevy_core_pipeline to LinearRgba (#12116) 2024-02-26 12:25:11 +00:00