split core renderer stuff into metal subfolder

This commit is contained in:
2024-09-12 11:37:08 +10:00
parent 667201fe49
commit d7cb051fb7
9 changed files with 173 additions and 160 deletions

View File

@ -0,0 +1,11 @@
import Metal
internal extension MTLCullMode {
init(_ face: Environment.Face) {
self = switch face {
case .none: .none
case .front: .front
case .back: .back
}
}
}