X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fglsl%2Fdebug.cpp;h=68615ed6e06d67c7491a2e88ce10bce360b1685d;hp=dd9db2f8ff760bdd92cd8e37fa24baa8141ee865;hb=30f676460bb6e87fd7ca2532e507b97965c4a407;hpb=15562a0c458fd655b6907c285951085f38270e27 diff --git a/source/glsl/debug.cpp b/source/glsl/debug.cpp index dd9db2f8..68615ed6 100644 --- a/source/glsl/debug.cpp +++ b/source/glsl/debug.cpp @@ -366,28 +366,28 @@ void DumpTree::visit(VariableDeclaration &var) append_subtree(branches); } -void DumpTree::visit(InterfaceBlock &block) +void DumpTree::visit(InterfaceBlock &iface) { string head; - if(!block.instance_name.empty()) - head += format("%%%d ", get_label(block)); - head += format("%s %s", block.interface, block.name); - if(!block.instance_name.empty()) - head += format(" %s", block.instance_name); - if(block.array) + if(!iface.instance_name.empty()) + head += format("%%%d ", get_label(iface)); + head += format("%s %s", iface.interface, iface.name); + if(!iface.instance_name.empty()) + head += format(" %s", iface.instance_name); + if(iface.array) head += "[]"; - if(block.source==BUILTIN_SOURCE) + if(iface.source==BUILTIN_SOURCE) head += " (builtin)"; - else if(block.linked_block) + else if(iface.linked_block) head += " (linked)"; append(head); begin_sub(); last_branch(); - if(block.type_declaration) - append(format("Type: %%%d %s", get_label(*block.type_declaration), block.type_declaration->name)); - else if(block.members) - block.members->visit(*this); + if(iface.type_declaration) + append(format("Type: %%%d %s", get_label(*iface.type_declaration), iface.type_declaration->name)); + else if(iface.members) + iface.members->visit(*this); end_sub(); }