You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Merge pull request #89398 from clayjohn/visual-debugger-coverage
Increase coverage of timestamps for visual profiler
This commit is contained in:
@@ -1388,6 +1388,11 @@ void ParticlesStorage::_particles_update_buffers(Particles *particles) {
|
||||
}
|
||||
}
|
||||
void ParticlesStorage::update_particles() {
|
||||
if (!particle_update_list.first()) {
|
||||
return;
|
||||
}
|
||||
|
||||
RENDER_TIMESTAMP("Update GPUParticles");
|
||||
uint32_t frame = RSG::rasterizer->get_frame_number();
|
||||
bool uses_motion_vectors = RSG::viewport->get_num_viewports_with_motion_vectors() > 0;
|
||||
while (particle_update_list.first()) {
|
||||
|
||||
Reference in New Issue
Block a user