Lines Matching refs:texDesc
159 MTLTextureDescriptor* texDesc = [[MTLTextureDescriptor alloc] init];
160 texDesc.textureType = mtlTexture.textureType;
161 texDesc.pixelFormat = mtlTexture.pixelFormat;
162 texDesc.width = mtlTexture.width;
163 texDesc.height = mtlTexture.height;
164 texDesc.depth = mtlTexture.depth;
165 texDesc.mipmapLevelCount = mtlTexture.mipmapLevelCount;
166 texDesc.arrayLength = mtlTexture.arrayLength;
167 texDesc.sampleCount = mtlTexture.sampleCount;
168 texDesc.usage = mtlTexture.usage;
169 return texDesc;