X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fdebug.cpp;h=2be5bce4ee2a97d5a31408af182c19c3571c0701;hb=eb7ffda6876bd2eeeb64dcb7c82236f36fe5cf43;hp=c02d914720a35707d2e40d167d31f0538f7ec901;hpb=4e3c03e2b60f9d6a9b8ed69b7150eb91e2db2e34;p=libs%2Fgl.git diff --git a/source/glsl/debug.cpp b/source/glsl/debug.cpp index c02d9147..2be5bce4 100644 --- a/source/glsl/debug.cpp +++ b/source/glsl/debug.cpp @@ -373,10 +373,7 @@ void DumpTree::visit(VariableDeclaration &var) void DumpTree::visit(InterfaceBlock &iface) { - string head; - if(!iface.instance_name.empty()) - head += format("%%%d ", get_label(iface)); - head += format("%s %s", iface.interface, iface.block_name); + string head = format("%%%d %s %s", get_label(iface), iface.interface, iface.block_name); if(!iface.instance_name.empty()) head += format(" %s", iface.instance_name); if(iface.array)