Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
htop
Commits
143a7de6
Commit
143a7de6
authored
Jul 22, 2016
by
Explorer09
Browse files
Round values in graph drawing (instead of implicit truncate)
parent
71785e2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Meter.c
View file @
143a7de6
...
...
@@ -406,8 +406,8 @@ static void GraphMeterMode_draw(Meter* this, int x, int y, int w) {
}
for
(;
i
<
nValues
;
i
+=
2
,
k
++
)
{
int
pix
=
GraphMeterMode_pixPerRow
*
GRAPH_HEIGHT
;
int
v1
=
CLAMP
(
data
->
values
[
i
]
*
pix
,
1
,
pix
);
int
v2
=
CLAMP
(
data
->
values
[
i
+
1
]
*
pix
,
1
,
pix
);
int
v1
=
CLAMP
(
(
int
)
lround
(
data
->
values
[
i
]
*
pix
)
,
1
,
pix
);
int
v2
=
CLAMP
(
(
int
)
lround
(
data
->
values
[
i
+
1
]
*
pix
)
,
1
,
pix
);
int
colorIdx
=
GRAPH_1
;
for
(
int
line
=
0
;
line
<
GRAPH_HEIGHT
;
line
++
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment