Начиная с AutoCAD 2015 этот код должен выглядеть так:
[CommandMethod("ToggleHWAcceleration")]
public void ToggleHWAcceleration()
{
using (Autodesk.AutoCAD.GraphicsSystem.Configuration config =
new Autodesk.AutoCAD.GraphicsSystem.Configuration())
{
if (config.IsHardwareAccelerationAvailable())
{
config.setHardwareAcceleration(
!config.IsHardwareAccelerationEnabled()
);
}
}
}