1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Tweak draw command label names for consistency

- Use Title Case for all labels, and add hyphens where relevant.
- Mention Roughness in SSR Filter's label name, as it's only enabled
  when the SSR roughness quality is not set to Disabled.
This commit is contained in:
Hugo Locurcio
2025-09-14 01:23:47 +02:00
parent bfa330dd5d
commit 204e310914
10 changed files with 26 additions and 26 deletions

View File

@@ -1493,7 +1493,7 @@ bool LightStorage::reflection_probe_instance_begin_render(RID p_instance, RID p_
atlas->render_buffers.instantiate();
}
RD::get_singleton()->draw_command_begin_label("Reflection probe render");
RD::get_singleton()->draw_command_begin_label("Reflection Probe Render");
if (LightStorage::get_singleton()->reflection_probe_get_update_mode(rpi->probe) == RS::REFLECTION_PROBE_UPDATE_ALWAYS && atlas->reflection.is_valid() && atlas->size != 256) {
WARN_PRINT("ReflectionProbes set to UPDATE_ALWAYS must have an atlas size of 256. Please update the atlas size in the ProjectSettings.");

View File

@@ -4217,7 +4217,7 @@ void TextureStorage::render_target_gen_back_buffer_mipmaps(RID p_render_target,
return; //nothing to do
}
}
RD::get_singleton()->draw_command_begin_label("Gaussian Blur Mipmaps2");
RD::get_singleton()->draw_command_begin_label("Gaussian Blur Mipmaps Pass 2");
//then mipmap blur
RID prev_texture = rt->backbuffer_mipmap0;
Size2i texture_size = rt->size;