Runtime.RasterSizeLimitEnabled Property
Gets or sets a flag indicating if the size of rasters should be limited or not.
Syntax
public static System.Boolean RasterSizeLimitEnabled { get; set; }
Property Value
Default: true
True if the raster size check is enabled, false otherwise.
Remarks
Normally Carmenta Engine prevents an application from creating very large rasters, as this is usually an indication of a misconfiguration. The rasters are limited to 512 MB in the 64-bit SDK and 128 MB when using the 32-bit Windows version. If the application tries to allocate a larger raster, an exception will be thrown.
But there are cases when the application might want to allocate rasters larger than this. In a 64-bit process, this will be allowed, if this property is first set to False. In a 32-bit process, this is not permitted, as it will likely lead to memory allocation problems very quickly. Trying to set this property to false in a 32-bit process will immediately throw an exception.
Platforms
Windows, Linux, Android