You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my code base, I'm calling mat.toByte() every frame
Since that function allocates memory on heap, it causes memory leak
Is there a way to do something like
varbytes=mat.toBytes();
defermat.freeBytes();
The text was updated successfully, but these errors were encountered:
In my code base, I'm calling mat.toByte() every frame
Since that function allocates memory on heap, it causes memory leak
Is there a way to do something like
The text was updated successfully, but these errors were encountered: