cohtml.Net.RenderingLibraryParams

Initialization parameters of the Rendering library.

Inherits from cohtml.Net.CommonRenderingLibraryParams, SystemIDisposable

Public Functions

Name
virtual override voidDispose()
RenderingLibraryParams()

Public Properties

Name
IFileManipulatorFileManipulator
System reader used for loading local resources.
global.System.IntPtrDeveloperOptions
Reserved property for internal usage. Do not use it.

Additional inherited members

Public Functions inherited from cohtml.Net.CommonRenderingLibraryParams

Name
virtual System.IntPtrSetDeveloperOptions(string arguments)
Set a developer option for internal usage. Do not use it.
CommonRenderingLibraryParams()

Public Properties inherited from cohtml.Net.CommonRenderingLibraryParams

Name
boolAllowMultipleRenderingThreads
Allows usage of Rendering Library calls from different threads. If not enabled, using rendering methods from different threads produces an error message. This option is useful when, for example, the client rendering backend records commands on different threads, that are later executed on a dedicated rendering thread. In the general use case where the rendering methods are called directly on the client’s rendering thread this should be set to false, to warn when incorrect usage is detected.
boolSetRenderingResourcesDebugNames
Will set debug names on rendering resources. The actual use of these names depends on the rendering backend implementation. Use this for debugging purposes only as it incurs a slight performance penalty.
boolAllowMultithreadedCommandProcessing
Will enable multi thread awarenes of the lirary which will result in more mutex locks/unlocks.
floatPathTessellationThresholdRatio
Sets the threshold ratio, which is used for determining whether to reuse old tessellated paths or tessellate new ones when changing the display size of paths (e.g. SVGs). If the threshold ratio is lower, then more paths will be tessellated, which will lead to a higher path visual quality, but also to increased memory usage. On the other hand, setting the threshold ratio to a higher value will result in reuse of more tessellated paths, which may cause lower path visual quality, because old tessellated paths are upscaled or downscaled in order to be reused. However, higher threshold value will lead to a decrease in the memory usage. The default threshold ratio is 2.5, which means that if we have previously tessellated a path with size X, then we will reuse it if the size of the new one is 250% larger or smaller. This is done by upscaling or downscaling the old tessellated path. Threshold ratio less than or equal to 1 will cause tessellation on every size change.
uintTextAtlasWidth
Sets the width of the text atlas in px. The default value is 1024. The value must be in the range [1024;8192]. If the given value is not power of two we will round it up.
uintTextAtlasHeight
Sets the height of the text atlas in px. The default value is 1024. The value must be in the range [1024;8192]. If the given value is not power of two we will round it up.
boolPreferGPUTessellator
Use the GPU for vector graphics tessellation. Resulting graphics are stored in intermediate texture atlases. Enabled by default. See MinPathAtlasSize and MaxPathAtlasSize
uintMinPathAtlasSize
Initial size of the atlas. The atlas grows with a factor of two if a shape does not fit. Only relevant if PreferGPUTessellator is true This might help with fragmentation. Lowering this does not reduce memory consumption If the given value is not a power of two we will round it up.
uintMaxPathAtlasSize
Maximum size of the atlas. Only relevant if PreferGPUTessellator is true Shapes that do not fit are tessellated on the CPU. If the given value is not a power of two we will round it up.

Protected Attributes inherited from cohtml.Net.CommonRenderingLibraryParams

Name
boolswigCMemOwn

Public Functions Documentation

function Dispose

virtual override void Dispose()

Reimplements: cohtml.Net.CommonRenderingLibraryParams.Dispose

function RenderingLibraryParams

RenderingLibraryParams()

Public Property Documentation

property FileManipulator

IFileManipulator FileManipulator;

System reader used for loading local resources.

property DeveloperOptions

global.System.IntPtr DeveloperOptions;

Reserved property for internal usage. Do not use it.