Click or drag to resize

ViewManagerEnableHardwareAcceleration Property

Enable Hardware Acceleration

Namespace:  VIZCore3D.NET.Manager
Assembly:  VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.1104 (2.8.24.1104)
Syntax
C#
public bool EnableHardwareAcceleration { get; set; }

Property Value

Type: Boolean
Examples
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
    if (vizcore3d.Model.IsOpen() == false) return;

    vizcore3d.View.EnableHardwareAcceleration = true;
}
See Also