File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ def _image_to_texture(image_and_adjustments):
166
166
img_rgb = _to_rgb_image (img_adjusted )
167
167
texture_id = _image_rgb_to_texture_impl (img_rgb )
168
168
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)))
170
170
texture_and_time = ALL_TEXTURES [image_and_adjustments ]
171
171
texture_and_time [1 ] = timer () # update this texture last usage time
172
172
return texture_and_time [0 ]
@@ -186,7 +186,7 @@ def _clear_all_cv_textures():
186
186
ALL_TEXTURES = all_textures_updated
187
187
if len (textures_to_delete ) > 0 :
188
188
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)))
190
190
191
191
192
192
def _image_viewport_size (image , width = None , height = None ):
You can’t perform that action at this time.
0 commit comments