以下是名为GPUImage的库中的代码,其中包含错误:
err = CVOpenGLESTextureCacheCreateTextureFromImage (kCFAllocatorDefault, coreVideoTextureCache, renderTarget,
NULL, // texture attributes
GL_TEXTURE_2D,
_textureOptions.internalFormat, // opengl format
(int)_size.width,
(int)_size.height,
_textureOptions.format, // native iOS format
_textureOptions.type,
0,
&renderTexture);
我使用了名为DBCamera的pod库,当我尝试使用iphone拍照时,它会给我一个错误。
我认为DBCamera库正在使用此CPUImage。
我一直按下执行按钮,但它只是停在那里,甚至没有记录错误信息。
有趣的是,如果我与xcode断开连接,该应用程序将起作用。
这是我用过的库的link
任何想法?