Lines Matching refs:texDesc
38 MTLTextureDescriptor* texDesc = [[MTLTextureDescriptor alloc] init];
39 texDesc.textureType = mtlTexture.textureType;
40 texDesc.pixelFormat = mtlTexture.pixelFormat;
41 texDesc.width = mtlTexture.width;
42 texDesc.height = mtlTexture.height;
43 texDesc.depth = mtlTexture.depth;
44 texDesc.mipmapLevelCount = mtlTexture.mipmapLevelCount;
45 texDesc.arrayLength = mtlTexture.arrayLength;
46 texDesc.sampleCount = mtlTexture.sampleCount;
48 texDesc.usage = mtlTexture.usage;
50 return texDesc;