https://navoshta.com/metal-camera-part-1-camera-session/ Metal Camera Tutorial Part 1: Getting raw camera data A lot of apps nowadays use iPhone and iPad cameras. Some even do pretty badass things with it (performance wise), like running each frame through a neural network or applying a realtime filter. Either way you may want to get as low as you can in terms of t navoshta.com Getting raw camer..
let attrs = [kCVPixelBufferCGImageCompatibilityKey: kCFBooleanTrue, kCVPixelBufferCGBitmapContextCompatibilityKey: kCFBooleanTrue, kCVPixelBufferMetalCompatibilityKey: kCFBooleanTrue] as CFDictionary CVPixelBufferCreate(kCFAllocatorDefault, width, height, kCVPixelFormatType_32BGRA, attrs, &pixelBuffer) kCVPixelBufferMetalCompatibilityKey: kCFBooleanTrue를 추가하여 해결 https://coderedirect.com/question..

Metal 기본 용어 MTLDevice GPU 연결 Command queue를 생성하도록 한다. Command queue Command buffer를 갖고 있다. GPU가 실행할 Command buffer의 정렬된 리스트를 받는다. 생성하는데 비용이 많이 들어 명령이 끝나도 삭제되지 않고 재사용된다. Command buffer 프레임을 렌더링하기 위한 instruction을 저장한다. buffer 작업이 완료되면 버퍼는 해제된다. Commands Command Buffer로 encoded된다. 모든 Commands가 enqueue되면 Command buffer는 Command queue로 commit, submit된다. MTLRenderPipelineState Command Encoder에 전달된다. M..