diff --git a/src/libRender/RadiumNBR/NodeGraph/PremadeNodes/Sources/ColorTextureNode.hpp b/src/libRender/RadiumNBR/NodeGraph/PremadeNodes/Sources/ColorTextureNode.hpp
index 4b46f08b577a739e6b810851ded07643e5efa2d0..78271b6efa817a2c2bcb0ed359441d5801fa0bd0 100644
--- a/src/libRender/RadiumNBR/NodeGraph/PremadeNodes/Sources/ColorTextureNode.hpp
+++ b/src/libRender/RadiumNBR/NodeGraph/PremadeNodes/Sources/ColorTextureNode.hpp
@@ -7,7 +7,7 @@ class NodeBasedRenderer_LIBRARY_API ColorTextureNode : public TextureNode
     explicit ColorTextureNode( const std::string& name ) :
         TextureNode( name,
                      getTypename(),
-                     Ra::Engine::Data::TextureParameters{ "Color Texture",
+                     Ra::Engine::Data::TextureParameters{ name + " (Color)",
                                                           gl::GL_TEXTURE_2D,
                                                           1,
                                                           1,
diff --git a/src/libRender/RadiumNBR/NodeGraph/PremadeNodes/Sources/DepthTextureNode.hpp b/src/libRender/RadiumNBR/NodeGraph/PremadeNodes/Sources/DepthTextureNode.hpp
index dc8f3ba907ae51bfe587e5712d55d9f9c32eaee4..62a059383df2c03faabdc74f2c5d839303f1a0ad 100644
--- a/src/libRender/RadiumNBR/NodeGraph/PremadeNodes/Sources/DepthTextureNode.hpp
+++ b/src/libRender/RadiumNBR/NodeGraph/PremadeNodes/Sources/DepthTextureNode.hpp
@@ -7,7 +7,7 @@ class NodeBasedRenderer_LIBRARY_API DepthTextureNode : public TextureNode
     explicit DepthTextureNode( const std::string& name ) :
         TextureNode( name,
                      getTypename(),
-                     Ra::Engine::Data::TextureParameters{ "Depth Texture",
+                     Ra::Engine::Data::TextureParameters{ name + " (Depth)",
                                                           gl::GL_TEXTURE_2D,
                                                           1,
                                                           1,