Merge branch 'blender-v2.92-release'

This commit is contained in:
Patrick Mours
2021-01-20 14:40:46 +01:00

View File

@@ -540,6 +540,10 @@ bool Session::acquire_tile(RenderTile &rtile, Device *tile_device, uint tile_typ
tile->buffers = new RenderBuffers(tile_device);
tile->buffers->reset(buffer_params);
}
else if (tile->buffers->buffer.device != tile_device) {
/* Move buffer to current tile device again in case it was stolen before. */
tile->buffers->buffer.move_device(tile_device);
}
tile->buffers->map_neighbor_copied = false;