본문으로 건너뛰기

EnableHardwareAcceleration

public bool EnableHardwareAcceleration { get; set; }

Enable Hardware Acceleration

Returns

TypeDescription
bool

Examples

// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

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

vizcore3d.View.EnableHardwareAcceleration = true;
}