Compare commits

..

1 Commits

Author SHA1 Message Date
bymyself
090c1dd3e6 fix: move essentials_category to correct replacement nodes
Move essentials_category from deprecated/incorrect nodes to their replacements:
- ImageBatch → BatchImagesNode (ImageBatch is deprecated)
- Blur → removed (should use subgraph blueprint)
- GetVideoComponents → Video Slice

Amp-Thread-ID: https://ampcode.com/threads/T-019c8340-4da2-723b-a09f-83895c5bbda5
2026-02-26 00:40:57 -08:00

View File

@@ -717,11 +717,11 @@ def _render_shader_batch(
gl.glUseProgram(0)
for tex in input_textures:
gl.glDeleteTextures(int(tex))
gl.glDeleteTextures(tex)
for tex in output_textures:
gl.glDeleteTextures(int(tex))
gl.glDeleteTextures(tex)
for tex in ping_pong_textures:
gl.glDeleteTextures(int(tex))
gl.glDeleteTextures(tex)
if fbo is not None:
gl.glDeleteFramebuffers(1, [fbo])
for pp_fbo in ping_pong_fbos: