X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fdebugscript.cpp;h=434743d054fc41d3358187e6edc826e337e44992;hp=6d4ba7f6f05d2cb9cf944caad72106511d48c46b;hb=HEAD;hpb=f0b6c9b6b95fde134927c395afbfbbbc057868e6 diff --git a/src/debugscript.cpp b/src/debugscript.cpp index 6d4ba7f..434743d 100644 --- a/src/debugscript.cpp +++ b/src/debugscript.cpp @@ -449,14 +449,15 @@ void DebugScript::PrintPerformance(View * view, Screen * scr) now.view_bounds = view->GetBounds(); // object_count clock delta_clock x Log10(x) y Log10(y) w Log10(w) Size(w) - #ifdef QUADTREE_DISABLED + //#ifdef QUADTREE_DISABLED printf("%d\t%llu\t%llu\t%s\t%s\t%s\t%s\t%s\t%s\t%u\n", now.object_count, (long long unsigned)now.clock, (long long unsigned)(now.clock - m_perf_last.clock), - Str(now.view_bounds.x).c_str(), Str(Log10(Abs(now.view_bounds.x))).c_str(), + "", "", "", "", "", "", 0); + /*Str(now.view_bounds.x).c_str(), Str(Log10(Abs(now.view_bounds.x))).c_str(), Str(now.view_bounds.y).c_str(), Str(Log10(Abs(now.view_bounds.y))).c_str(), Str(now.view_bounds.w).c_str(), Str(Log10(now.view_bounds.w)).c_str(), - (unsigned)Size(now.view_bounds.w)); - #endif + (unsigned)Size(now.view_bounds.w));*/ + //#endif m_perf_last = now; }