Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 247b44b

Browse filesBrowse files
committed
heatmap deletion frees up GPU VRAM
1 parent 9713a4c commit 247b44b
Copy full SHA for 247b44b

File tree

Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-1
lines changed

‎fastplotlib/graphics/image.py

Copy file name to clipboardExpand all lines: fastplotlib/graphics/image.py
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,8 @@ def __init__(
274274
start_ixs = [list(map(lambda c: c * chunk_size, chunk)) for chunk in chunks]
275275
stop_ixs = [list(map(lambda c: c + chunk_size, chunk)) for chunk in start_ixs]
276276

277-
self._world_object = pygfx.Group()
277+
world_object = pygfx.Group()
278+
self._set_world_object(world_object)
278279

279280
if (vmin is None) or (vmax is None):
280281
vmin, vmax = quick_min_max(data)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.