46 lines
1.7 KiB
Swift
Executable File
46 lines
1.7 KiB
Swift
Executable File
|
|
import MetalKit
|
|
|
|
public class MetalView: NSObject, MTKViewDelegate {
|
|
|
|
public var device: MTLDevice!
|
|
var queue: MTLCommandQueue!
|
|
var cps: MTLComputePipelineState!
|
|
|
|
override public init() {
|
|
super.init()
|
|
registerShaders()
|
|
}
|
|
|
|
func registerShaders() {
|
|
device = MTLCreateSystemDefaultDevice()!
|
|
queue = device.newCommandQueue()
|
|
let path = Bundle.main.pathForResource("Shaders", ofType: "metal")
|
|
do {
|
|
let input = try String(contentsOfFile: path!, encoding: String.Encoding.utf8)
|
|
let library = try device.newLibrary(withSource: input, options: nil)
|
|
let kernel = library.newFunction(withName: "compute")!
|
|
cps = try device.newComputePipelineState(with: kernel)
|
|
} catch let e {
|
|
Swift.print("\(e)")
|
|
}
|
|
}
|
|
|
|
public func mtkView(_ view: MTKView, drawableSizeWillChange size: CGSize) {}
|
|
|
|
public func draw(in view: MTKView) {
|
|
if let drawable = view.currentDrawable {
|
|
let commandBuffer = queue.commandBuffer()
|
|
let commandEncoder = commandBuffer.computeCommandEncoder()
|
|
commandEncoder.setComputePipelineState(cps)
|
|
commandEncoder.setTexture(drawable.texture, at: 0)
|
|
let threadGroupCount = MTLSizeMake(8, 8, 1)
|
|
let threadGroups = MTLSizeMake(drawable.texture.width / threadGroupCount.width, drawable.texture.height / threadGroupCount.height, 1)
|
|
commandEncoder.dispatchThreadgroups(threadGroups, threadsPerThreadgroup: threadGroupCount)
|
|
commandEncoder.endEncoding()
|
|
commandBuffer.present(drawable)
|
|
commandBuffer.commit()
|
|
}
|
|
}
|
|
}
|