[Bf-blender-cvs] [3e44f4ba4d5] cycles-x: Cycles X: Tweak to tile buffer temporary file name

Sergey Sharybin noreply at git.blender.org
Tue Sep 7 19:26:06 CEST 2021


Commit: 3e44f4ba4d5fe5fbf125e7365bc7dee0389ec156
Author: Sergey Sharybin
Date:   Tue Sep 7 19:25:03 2021 +0200
Branches: cycles-x
https://developer.blender.org/rB3e44f4ba4d5fe5fbf125e7365bc7dee0389ec156

Cycles X: Tweak to tile buffer temporary file name

Was suggested by Brecht in review, but somehow got lost in updates.

===================================================================

M	intern/cycles/render/tile.cpp

===================================================================

diff --git a/intern/cycles/render/tile.cpp b/intern/cycles/render/tile.cpp
index e37dd47a985..fa32c2c8532 100644
--- a/intern/cycles/render/tile.cpp
+++ b/intern/cycles/render/tile.cpp
@@ -35,7 +35,7 @@ TileManager::TileManager()
    * Cycles sessions within the same process. */
   const string unique_part = to_string(system_self_process_id()) + "-" +
                              to_string(reinterpret_cast<uintptr_t>(this));
-  tile_filepath_ = path_temp_get("cycles-tile-" + unique_part + ".exr");
+  tile_filepath_ = path_temp_get("cycles-tile-buffer-" + unique_part + ".exr");
 }
 
 TileManager::~TileManager()



More information about the Bf-blender-cvs mailing list