8 lines
249 B
Swift
8 lines
249 B
Swift
enum DisplayModeFlags {
|
|
static let valid: UInt32 = 0x0000_0001
|
|
static let safe: UInt32 = 0x0000_0002
|
|
static let `default`: UInt32 = 0x0000_0004
|
|
static let notPreset: UInt32 = 0x0000_0200
|
|
static let native: UInt32 = 0x0200_0000
|
|
}
|