summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-16 09:32:11 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-16 09:32:11 +0200
commit5708a3a02e00061e03366f2dabf8942df66fedca (patch)
tree5114deba8f0f9faaa79a9850f2639d18aa47eebe
parent8663f2715917098a36ba5dc7a392bf0f2993c43b (diff)
parentc84616c2d2ab9c4af8c2020c17bb9c9a2c14a47f (diff)
downloadredot-engine-5708a3a02e00061e03366f2dabf8942df66fedca.tar.gz
Merge pull request #92000 from clayjohn/vram-debugger
Increase coverage of VRAM debugger and add support to RD backends
-rw-r--r--drivers/gles3/storage/texture_storage.cpp2
-rw-r--r--modules/noise/noise_texture_2d.cpp1
-rw-r--r--scene/resources/gradient_texture.cpp2
-rw-r--r--servers/rendering/renderer_rd/storage_rd/texture_storage.cpp18
4 files changed, 22 insertions, 1 deletions
diff --git a/drivers/gles3/storage/texture_storage.cpp b/drivers/gles3/storage/texture_storage.cpp
index a65347a5b1..57ef951bdf 100644
--- a/drivers/gles3/storage/texture_storage.cpp
+++ b/drivers/gles3/storage/texture_storage.cpp
@@ -1391,7 +1391,7 @@ void TextureStorage::texture_debug_usage(List<RS::TextureInfo> *r_info) {
tinfo.format = t->format;
tinfo.width = t->alloc_width;
tinfo.height = t->alloc_height;
- tinfo.depth = 0;
+ tinfo.depth = t->depth;
tinfo.bytes = t->total_data_size;
r_info->push_back(tinfo);
}
diff --git a/modules/noise/noise_texture_2d.cpp b/modules/noise/noise_texture_2d.cpp
index 0443fec4a0..0960b2ad36 100644
--- a/modules/noise/noise_texture_2d.cpp
+++ b/modules/noise/noise_texture_2d.cpp
@@ -119,6 +119,7 @@ void NoiseTexture2D::_set_texture_image(const Ref<Image> &p_image) {
} else {
texture = RS::get_singleton()->texture_2d_create(p_image);
}
+ RS::get_singleton()->texture_set_path(texture, get_path());
}
emit_changed();
}
diff --git a/scene/resources/gradient_texture.cpp b/scene/resources/gradient_texture.cpp
index 7df439a799..6ec9422d2d 100644
--- a/scene/resources/gradient_texture.cpp
+++ b/scene/resources/gradient_texture.cpp
@@ -136,6 +136,7 @@ void GradientTexture1D::_update() {
texture = RS::get_singleton()->texture_2d_create(image);
}
}
+ RS::get_singleton()->texture_set_path(texture, get_path());
}
void GradientTexture1D::set_width(int p_width) {
@@ -275,6 +276,7 @@ void GradientTexture2D::_update() {
} else {
texture = RS::get_singleton()->texture_2d_create(image);
}
+ RS::get_singleton()->texture_set_path(texture, get_path());
}
float GradientTexture2D::_get_gradient_offset_at(int x, int y) const {
diff --git a/servers/rendering/renderer_rd/storage_rd/texture_storage.cpp b/servers/rendering/renderer_rd/storage_rd/texture_storage.cpp
index f844919df1..6e5e8f63e0 100644
--- a/servers/rendering/renderer_rd/storage_rd/texture_storage.cpp
+++ b/servers/rendering/renderer_rd/storage_rd/texture_storage.cpp
@@ -1457,6 +1457,23 @@ void TextureStorage::texture_set_detect_roughness_callback(RID p_texture, RS::Te
}
void TextureStorage::texture_debug_usage(List<RS::TextureInfo> *r_info) {
+ List<RID> textures;
+ texture_owner.get_owned_list(&textures);
+
+ for (List<RID>::Element *E = textures.front(); E; E = E->next()) {
+ Texture *t = texture_owner.get_or_null(E->get());
+ if (!t) {
+ continue;
+ }
+ RS::TextureInfo tinfo;
+ tinfo.path = t->path;
+ tinfo.format = t->format;
+ tinfo.width = t->width;
+ tinfo.height = t->height;
+ tinfo.depth = t->depth;
+ tinfo.bytes = Image::get_image_data_size(t->width, t->height, t->format, t->mipmaps);
+ r_info->push_back(tinfo);
+ }
}
void TextureStorage::texture_set_force_redraw_if_visible(RID p_texture, bool p_enable) {
@@ -3042,6 +3059,7 @@ void TextureStorage::_update_render_target(RenderTarget *rt) {
texture_2d_placeholder_initialize(rt->texture);
Texture *tex = get_texture(rt->texture);
tex->is_render_target = true;
+ tex->path = "Render Target (Internal)";
}
_clear_render_target(rt);