Fix T52574: make Cycles rendered tile counter more clear.

Differential Revision: https://developer.blender.org/D2853
This commit is contained in:
Kim Christensen
2017-09-28 01:59:11 +02:00
committed by Brecht Van Lommel
parent 400e6f37b8
commit 2a36ee16c1

View File

@@ -930,7 +930,7 @@ void Session::update_status_time(bool show_pause, bool show_done)
const bool rendering_finished = (tile == num_tiles); const bool rendering_finished = (tile == num_tiles);
const bool is_last_tile = (tile + 1) == num_tiles; const bool is_last_tile = (tile + 1) == num_tiles;
substatus = string_printf("Path Tracing Tile %d/%d", tile, num_tiles); substatus = string_printf("Rendered %d/%d Tiles", tile, num_tiles);
if(!rendering_finished && (device->show_samples() || (is_cpu && is_last_tile))) { if(!rendering_finished && (device->show_samples() || (is_cpu && is_last_tile))) {
/* Some devices automatically support showing the sample number: /* Some devices automatically support showing the sample number: