Created
August 4, 2021 10:20
-
-
Save varun04/361468b30f226c28d299f07aef7c15ba 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 DownSamplingLevel: Int { | |
| case level0 = 1 | |
| case level1 = 2 | |
| case level2 = 4 | |
| case level3 = 8 | |
| public static var `default`: DownSamplingLevel { | |
| .level0 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment