I have a program that is essentially doing the following:
Code: Select all
for n = 1 to 10
Local ID
ID = LoadBrush(NIL, "file n")
SaveBrush(ID, file)
FreeBrush(ID)
next
Code: Select all
for n = 1 to 10
Local ID
ID = LoadBrush(NIL, "file n")
SaveBrush(ID, file)
FreeBrush(ID)
next
Code: Select all
mem = GetMemoryInfo(#FASTMEMORY)
for n = 1 to 10
Local ID
ID = LoadBrush(NIL, "image.png")
;SaveBrush(ID, file)
FreeBrush(ID)
DebugPrint(Int((mem - GetMemoryInfo(#FASTMEMORY))/1024/1024) .. " MB wasted")
next
WaitLeftMouse()
There's one exception, though: If layers are on and the brush is still used by a layer, the brush won't be freed immediately but will just be made inaccessible while still keeping it in memory because it's needed by the layer. It will automatically be freed as soon as it's no longer referenced by a layer. The same is true for all other objects that can be added as layers.jPV wrote: ↑Tue Mar 04, 2025 2:12 pm FreeBrush() frees the brush data from memory immediately, so in that loop you're having only one brush in memory at once.