Enum GraphicsDeviceStatus
Describes the current status of a GraphicsDevice.
public enum GraphicsDeviceStatus
Fields
Hung = 2
The application's device failed due to badly formed commands sent by the application. This is an design-time issue that should be investigated and fixed.
InternalError = 4
The driver encountered a problem and was put into the device removed state.
InvalidCall = 5
The application provided invalid parameter data; this must be debugged and fixed before the application is released.
Normal = 0
The device is running fine.
Removed = 1
The video card has been physically removed from the system, or a driver upgrade for the video card has occurred. The application should destroy and recreate the device.
Reset = 3
The device failed due to a badly formed command. This is a run-time issue; The application should destroy and recreate the device.