Enum SubSystems
- Namespace
- Sdl3Sharp
- Assembly
- Sdl3Sharp.dll
Represents a sub system which can be initialized by SDL and used in an application
[Flags]
public enum SubSystems : uint
Fields
Audio = 16The Audio sub system
Camera = 65536The Camera sub system
Events = 16384The Events sub system
Gamepad = 8192The Gamepad sub system
Haptic = 4096The Haptic sub system
Joystick = 512The Joystick sub system
Initializing Joystick implies initializing Events.
This sub system should be initialized on the same thread as Video on Windows (which should be the main thread as required by Video), if you don't set the hint Thread.
None = 0No sub systems
Sensor = 32768The Sensor sub system
Video = 32The Video sub system
Initializing Video implies initializing Events.
This sub system should be initialized on the main thread.