Skip to content

Commit 4f69e5e

Browse files
author
Pascal Thomet
committed
remove log
1 parent 49017de commit 4f69e5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

imgui_datascience/imgui_cv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def _image_to_texture(image_and_adjustments):
166166
img_rgb = _to_rgb_image(img_adjusted)
167167
texture_id = _image_rgb_to_texture_impl(img_rgb)
168168
ALL_TEXTURES[image_and_adjustments_copy] = [texture_id, timer()]
169-
print("Added one texture, len=" + str(len(ALL_TEXTURES)))
169+
# print("Added one texture, len=" + str(len(ALL_TEXTURES)))
170170
texture_and_time = ALL_TEXTURES[image_and_adjustments]
171171
texture_and_time[1] = timer() # update this texture last usage time
172172
return texture_and_time[0]
@@ -186,7 +186,7 @@ def _clear_all_cv_textures():
186186
ALL_TEXTURES = all_textures_updated
187187
if len(textures_to_delete) > 0:
188188
gl.glDeleteTextures(textures_to_delete)
189-
print("Delete {0} old texture(s), len={1}".format(len(textures_to_delete), len(ALL_TEXTURES)))
189+
# print("Delete {0} old texture(s), len={1}".format(len(textures_to_delete), len(ALL_TEXTURES)))
190190

191191

192192
def _image_viewport_size(image, width=None, height=None):

0 commit comments

Comments
 (0)