Skip to content

TBLRuntimeResourceInfo

Provides information about resources allocated by Blend2D.

Definition

Unit: Blend2D

type TBLRuntimeResourceInfo = record ... end;

Properties

Name Description
DynamicPipelineCount Count of dynamic pipelines created and cached.
VMBlockCount Number of blocks of virtual memory allocated.
VMOverhead Overhead required to manage virtual memory allocations.
VMReserved Virtual memory reserved (allocated internally).
VMUsed Virtual memory used at this time.
ZMBlockCount Number of blocks of zeroed memory allocated.
ZMOverhead Overhead required to manage zeroed memory allocations.
ZMReserved Zeroed memory reserved (allocated internally).
ZMUsed Zeroed memory used at this time.

Methods

Name Description
Reset

Property Descriptions

DynamicPipelineCount

Count of dynamic pipelines created and cached.

property DynamicPipelineCount: NativeInt read GetDynamicPipelineCount

Type: NativeInt


VMBlockCount

Number of blocks of virtual memory allocated.

property VMBlockCount: NativeInt read GetVMBlockCount

Type: NativeInt


VMOverhead

Overhead required to manage virtual memory allocations.

property VMOverhead: NativeInt read GetVMOverhead

Type: NativeInt


VMReserved

Virtual memory reserved (allocated internally).

property VMReserved: NativeInt read GetVMReserved

Type: NativeInt


VMUsed

Virtual memory used at this time.

property VMUsed: NativeInt read GetVMUsed

Type: NativeInt


ZMBlockCount

Number of blocks of zeroed memory allocated.

property ZMBlockCount: NativeInt read GetZMBlockCount

Type: NativeInt


ZMOverhead

Overhead required to manage zeroed memory allocations.

property ZMOverhead: NativeInt read GetZMOverhead

Type: NativeInt


ZMReserved

Zeroed memory reserved (allocated internally).

property ZMReserved: NativeInt read GetZMReserved

Type: NativeInt


ZMUsed

Zeroed memory used at this time.

property ZMUsed: NativeInt read GetZMUsed

Type: NativeInt


Method Descriptions

Reset

procedure Reset; inline