diff options
author | Benjamin Bellec <[email protected]> | 2015-09-04 20:27:22 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-09-24 19:54:50 +0200 |
commit | ebcc886d87e465f7bd3a172f9ff4dc825c238c5c (patch) | |
tree | 1b7d3276f33474d1e30137f2d1ab121d071d947a /src/gallium | |
parent | 7bbce21e458d912279159aa6ac122768c6c06551 (diff) |
gallium/radeon: remove the percentage symbol from HUD temperature
The HUD adds '%' if max == 100.
Signed-off-by: Benjamin Bellec <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeon/r600_pipe_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/r600_pipe_common.c b/src/gallium/drivers/radeon/r600_pipe_common.c index d97b721a12f..08839343b74 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.c +++ b/src/gallium/drivers/radeon/r600_pipe_common.c @@ -721,7 +721,7 @@ static int r600_get_driver_query_info(struct pipe_screen *screen, {"VRAM-usage", R600_QUERY_VRAM_USAGE, {rscreen->info.vram_size}, PIPE_DRIVER_QUERY_TYPE_BYTES}, {"GTT-usage", R600_QUERY_GTT_USAGE, {rscreen->info.gart_size}, PIPE_DRIVER_QUERY_TYPE_BYTES}, {"GPU-load", R600_QUERY_GPU_LOAD, {100}}, - {"temperature", R600_QUERY_GPU_TEMPERATURE, {100}}, + {"temperature", R600_QUERY_GPU_TEMPERATURE, {125}}, {"shader-clock", R600_QUERY_CURRENT_GPU_SCLK, {0}, PIPE_DRIVER_QUERY_TYPE_HZ}, {"memory-clock", R600_QUERY_CURRENT_GPU_MCLK, {0}, PIPE_DRIVER_QUERY_TYPE_HZ}, }; |