C

MCU.Config.fontFilesCachePolicy

Configure copying of the application's font files to RAM for faster access.

Description

Sets the resource cache policy for the application's font files.

Note: This property is relevant only for the Monotype Spark font engine.

The following is a list of possible values:

ValueResult
"OnStartup"The data is copied to RAM on startup. Although this enables faster access to data, it might use up limited RAM.
"NoCaching"The data is not copied to RAM. This may result in reduced performance.

The default value is "NoCaching".

The MCU.Config.fontFilesRuntimeAllocationType property can be used to further configure which memory area is used for copying.

See Text Rendering and Fonts for font engine-specific details.

Usage

MCU.Config {
    fontFilesCachePolicy: "OnStartup"
}

Since

This property was introduced in QmlProject API 1.3 .

See also QUL_FONT_FILES_RESOURCE_CACHE_POLICY.

Available under certain Qt licenses.
Find out more.