Click or drag to resize
Ab4d.SharpEngine logo

SharpEngineSceneViewMultisampleCount Property

MultisampleCount defines the multi-sampling count (MSAA). See remarks for more info.

Namespace: Ab4d.SharpEngine.Wpf
Assembly: Ab4d.SharpEngine.Wpf (in Ab4d.SharpEngine.Wpf.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public int MultisampleCount { get; set; }

Property Value

Int32

Implements

ISharpEngineSceneViewMultisampleCount
Remarks

MultisampleCount defines the multi-sampling count (MSAA).

When set before the SceneView is initialized it is used to initialize the SceneView.

After initializing the SceneView, the MultisampleCount gets the actually used multi-sampling count. Default value before initialization is 1 (no MSAA).

If this value is not manually set by the user, then during initialization the GetDefaultMultiSampleCount(PhysicalDeviceDetails) method is called to set the multi-sampling count for the used GPU device (by default MSAA is set to 4 for fast desktop devices, for other devices it is set to 1).

Changing this value after the SceneView is initialized will call SceneView.Resize method with the new multi-sampling count.

See Also