Created
November 17, 2019 21:33
-
-
Save dmytro-anokhin/1c3487843157ba2762fc14a2ea5ef1e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| enum SubsamplingLevel: Int { | |
| case level0 = 1 | |
| case level1 = 2 | |
| case level2 = 4 | |
| case level3 = 8 | |
| public static var `default`: SubsamplingLevel { | |
| .level0 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment