summaryrefslogtreecommitdiffstats
path: root/scripts/pybootchartgui/pybootchartgui/draw.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/pybootchartgui/pybootchartgui/draw.py')
-rw-r--r--scripts/pybootchartgui/pybootchartgui/draw.py19
1 files changed, 16 insertions, 3 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py
index a22ac802f7..2aa348ba70 100644
--- a/scripts/pybootchartgui/pybootchartgui/draw.py
+++ b/scripts/pybootchartgui/pybootchartgui/draw.py
@@ -297,10 +297,20 @@ OPTIONS = None
297 297
298def extents(options, xscale, trace): 298def extents(options, xscale, trace):
299 start = min(trace.start.keys()) 299 start = min(trace.start.keys())
300 end = max(trace.end.keys()) 300 end = start
301 301
302 w = int ((end - start) * sec_w_base * xscale) + 2*off_x 302 processes = 0
303 h = proc_h * len(trace.processes) + header_h + 2 * off_y 303 for proc in trace.processes:
304 if not options.app_options.show_all and \
305 trace.processes[proc][1] - trace.processes[proc][0] < options.app_options.mintime:
306 continue
307
308 if trace.processes[proc][1] > end:
309 end = trace.processes[proc][1]
310 processes += 1
311
312 w = int ((end - start) * sec_w_base * xscale) + 2 * off_x
313 h = proc_h * processes + header_h + 2 * off_y
304 314
305 return (w, h) 315 return (w, h)
306 316
@@ -419,6 +429,9 @@ def render_processes_chart(ctx, options, trace, curr_y, w, h, sec_w):
419 offset = min(trace.start.keys()) 429 offset = min(trace.start.keys())
420 for s in sorted(trace.start.keys()): 430 for s in sorted(trace.start.keys()):
421 for val in sorted(trace.start[s]): 431 for val in sorted(trace.start[s]):
432 if not options.app_options.show_all and \
433 trace.processes[val][1] - s < options.app_options.mintime:
434 continue
422 task = val.split(":")[1] 435 task = val.split(":")[1]
423 #print val 436 #print val
424 #print trace.processes[val][1] 437 #print trace.processes[val][1]