You are here: Start » AVL.NET » Function Reference » System » Configuration » AVL.InspectImageMemoryPools

AVL.InspectImageMemoryPools

Returns information about allocated image memory buffers. This information can be used for preallocation.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void InspectImageMemoryPools
(
	out bool outIsEnabled,
	IList<int> outPoolSizes,
	IList<int> outBlockLengths,
	out int outTotalUsage
)

Parameters

Name Type Range Default Description
outIsEnabledboolSpecifies whether memory pools are used or not.
outPoolSizesSystem.Collections.Generic.IList<int>Count of blocks in consecutive pools.
outBlockLengthsSystem.Collections.Generic.IList<int>Length of blocks in consecutive pools.
outTotalUsageintTotal image memory allocated [B].

Parallel execution

This filter cannot be placed in multiple Workers.

See also