office-gobmx/svtools
Caolán McNamara 5651dd471e coverity#1157745 Unchecked return value
Change-Id: I06e8e946063dc54335f3b672105d5cd0b3ff71a4
2014-10-28 15:06:35 +00:00
..
inc
langsupport
qa
source coverity#1157745 Unchecked return value 2014-10-28 15:06:35 +00:00
uiconfig/ui
util
AllLangResTarget_svt.mk
CppunitTest_svtools_graphic.mk
CppunitTest_svtools_html.mk
Executable_langsupport.mk
JunitTest_svtools_unoapi.mk
Library_svt.mk
Makefile
Module_svtools.mk
README Some notes about image swapping 2014-10-26 10:28:06 +01:00
UIConfig_svt.mk

Tools on top of VCL. Common dialogs, file and print dialogs, wizards, vcl filters, lots of helper code.


== Image swapping ==

LO has three kind of swapout mechanisms:

1) Manual swap out calls: Maybe it comes from old days, when memory was more expensive to use so LO tried to store
images in the memory only when it is really used and swap out them directly after use. These manual calls seems
useless nowadays and even ineffective.

2) Size based auto swapping: when the size of all graphic objects reaches a configurable limit (20 MB by default)
then some of the graphics are saved to the local file system and freed in the memory.

3) Time based auto swapping: more info needed.