mirror of
https://github.com/KLayout/klayout.git
synced 2026-09-04 16:50:09 +02:00
Fixed a problem with object lifetime and tiling processor input found after GC became active. Added a documentation hint.
This commit is contained in:
@@ -4222,11 +4222,13 @@ CODE
|
||||
tp.output("res", res)
|
||||
tp.input("input", self.data)
|
||||
tp.threads = (@engine.threads || 1)
|
||||
|
||||
if tile_boundary
|
||||
tp.input("boundary", tile_boundary.data)
|
||||
boundary = tile_boundary.data
|
||||
else
|
||||
tp.input("boundary", RBA::Region::new(self.data.bbox))
|
||||
boundary = RBA::Region::new(self.data.bbox)
|
||||
end
|
||||
tp.input("boundary", boundary)
|
||||
|
||||
tp.var("vmin", limits[0] || 0.0)
|
||||
tp.var("vmax", limits[1] || 1.0)
|
||||
|
||||
Reference in New Issue
Block a user