mirror of
https://github.com/GayPizzaSpecifications/voxelotl-engine.git
synced 2025-08-03 21:21:34 +00:00
12 lines
187 B
Swift
12 lines
187 B
Swift
|
import Metal
|
||
|
|
||
|
internal extension MTLCullMode {
|
||
|
init(_ face: Environment.Face) {
|
||
|
self = switch face {
|
||
|
case .none: .none
|
||
|
case .front: .front
|
||
|
case .back: .back
|
||
|
}
|
||
|
}
|
||
|
}
|