diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2016-11-30 10:50:03 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-07 10:37:59 +0000 |
commit | a2c20921956bac82ba8df5e36243e9706639a4b2 (patch) | |
tree | e37b68a3caf6ea3f9fa4d78fb0a9337bf1b1f6c6 /scripts/pybootchartgui | |
parent | 7b8ffa18fd81741de29af916ac7fe73755fd10e2 (diff) | |
download | poky-a2c20921956bac82ba8df5e36243e9706639a4b2.tar.gz |
pybootchartgui/draw.py: fix drawing of samples not starting at zero
The code did not handle x scaling correctly when drawing starts at
some time larger than zero, i.e. it worked for normal bootchart data,
but not for the system statistics recorded by buildstats.bbclass.
(From OE-Core rev: 166f8f9aaa1f01fc6d6a5451f8f06b815c51ffae)
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/pybootchartgui')
-rw-r--r-- | scripts/pybootchartgui/pybootchartgui/draw.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py index 2b5907be19..925002d6e8 100644 --- a/scripts/pybootchartgui/pybootchartgui/draw.py +++ b/scripts/pybootchartgui/pybootchartgui/draw.py | |||
@@ -256,7 +256,7 @@ def draw_chart(ctx, color, fill, chart_bounds, data, proc_tree, data_range): | |||
256 | # avoid divide by zero | 256 | # avoid divide by zero |
257 | if max_y == 0: | 257 | if max_y == 0: |
258 | max_y = 1.0 | 258 | max_y = 1.0 |
259 | xscale = float (chart_bounds[2]) / max_x | 259 | xscale = float (chart_bounds[2]) / (max_x - x_shift) |
260 | # If data_range is given, scale the chart so that the value range in | 260 | # If data_range is given, scale the chart so that the value range in |
261 | # data_range matches the chart bounds exactly. | 261 | # data_range matches the chart bounds exactly. |
262 | # Otherwise, scale so that the actual data matches the chart bounds. | 262 | # Otherwise, scale so that the actual data matches the chart bounds. |