
SwiftUI로 프로젝트를 하는데 이런 장바구니 화면에서 문제가 생겼다. 첫번째 아이템이든 두번째 아이템이든 세번째 아이템이든 무엇을 삭제해도 마지막 아이템이 사라지는 이슈가 있었다. 근데 웃긴게 프린트 찍어보니까 뷰모델에서는 제대로 적용돼서 원하는 요소가 삭제됐는데 뷰에서는 그게 안 되는 것… 일단 해결을 했는데 index를 이용해서 삭제하는게 아니라 id를 이용해서 삭제를 하면 된다. 기존의 코드 // CartView.swift @StateObject var viewModel = MyPageViewModel.shared ForEach(viewModel.cartItems.indices, id: \.self) { index in CartCardView(viewModel: CartViewModel(view..

에러 내용 Sandbox: rsync.samba(9105) deny(1) file-read-data /Users/yh/Library/Developer/Xcode/DerivedData/WeatherMeow-awbzerncehmyspdnzcjcdtzimzin/Build/Intermediates.noindex/Previews/WeatherMeow/Products/Debug-iphonesimulator/WeatherMeow.app/Frameworks/Alamofire.framework/_CodeSignature 해결 방법 ENABLE_USER_SCRIPT_SANDBOXING 을 No 로 변경

1. NDC This coordinates is used by developers to construct their geometries and transform the geometries in vertex shader via model and view matrices. 2. Framebuffer Coordinate (Viewport Coordinate) When we write into attachment or read from attachment or copy/blit between attachments, we use framebuffer coordiante to specify the location. 3. Texture Coordinate when we upload texture into memory..

Texture 매핑 var depthTexture: MTLTexture! = nil let depthTextureDescriptor = MTLTextureDescriptor.texture2DDescriptor( pixelFormat: .depth32Float, width: Int(layerSize.width), height: Int(layerSize.height), mipmapped: false) depthTexture = device.makeTexture(descriptor: depthTextureDescriptor) ※ Texel : Texture의 조각 Mipmapping MTLBitCommandEncoder func generateMipmaps(for texture: MTLTexture) Samp..

Metal Resources MTLBuffer : 모든 데이터 타입을 포함하 ㄹ수 있는 unformatted 메모리 할당 MTLTexture : formatted 이미지 데이터 할당 Argument Table Shader Parameters와 Resources 사이의 매핑 (Encoder와 Shader 사이의 연결) Buffers Textures Sampler states Buffer Buffer 생성 makeBuffer(length:options:) makeBuffer(bytes:length:options:) makeBuffer(bytesNoCopy:length:options:deallocator:) MTLVertexDescriptor vertexDescriptor.attributes[0].offset..

MSL은 Vector와 Matrix에 대한 데이터 타입을 갖고 있다. ex) float3, float4, float4x4 Argument Table Shader 작성 방법 shaderType returnType shaderName(parameter1, parameter2, etc....) { .. } shaderType : vertex, fragment, kernel Vertex Shader 셋팅 // generate a large enough buffer to allow streaming vertices for 3 // semaphore controlled frames vertexBuffer = device.makeBuffer(length: ConstantBufferSize, options: []) v..
let options = [CIImageOption.colorSpace: CGColorSpaceCreateDeviceRGB()] as [CIImageOption: Any] let image = CIImage.init(mtlTexture: texture, options: options) option에 CGColorSpaceCreateDeviceRGB()를 추가한다. https://stackoverflow.com/questions/51792808/ios-color-space-metal-texture-to-ui-image-iphone-vs-ipad-camera