GLKTextureLoader 完成处理程序 EXEC_BAD_ACCESS 问题

发布于 2025-01-08 03:31:49 字数 971 浏览 0 评论 0原文

我可以使用 GLKTextureLoader 加载纹理,但是当我尝试在单独的线程上加载纹理时,我遇到了 EXEC_BAD_ACCESS 问题。

工作代码。

NSError *error;
GLuint textureName = self.textureImageInfo.name;
glDeleteTextures(GL_TEXTURE_2D, &textureName);
self.textureImageInfo = 
[GLKTextureLoader textureWithCGImage:imageRef options:nil error:&error];
if( error )
{
    NSLog(@"Image loading error. %@", error );
}

失败的代码。

self.textureLoader = 
[[GLKTextureLoader alloc] initWithSharegroup:_context.sharegroup];
[self.textureLoader textureWithCGImage:imageRef options:nil queue:dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0) completionHandler:^( GLKTextureInfo *textureInfo, NSError *error)
 {
     if( error )
     {
         NSLog(@"Image loading error. %@", error );
         return;
     }
 }];

附加信息。 在completionBlock正在运行的线程上,我通过以下方式获得EXEC_BAD_ACCESS 在此处输入图像描述

有人设法让它工作吗?

I am able to load a texture using the GLKTextureLoader however when i try to do it on a separate thread i get an EXEC_BAD_ACCESS issue.

working code.

NSError *error;
GLuint textureName = self.textureImageInfo.name;
glDeleteTextures(GL_TEXTURE_2D, &textureName);
self.textureImageInfo = 
[GLKTextureLoader textureWithCGImage:imageRef options:nil error:&error];
if( error )
{
    NSLog(@"Image loading error. %@", error );
}

Failing code.

self.textureLoader = 
[[GLKTextureLoader alloc] initWithSharegroup:_context.sharegroup];
[self.textureLoader textureWithCGImage:imageRef options:nil queue:dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0) completionHandler:^( GLKTextureInfo *textureInfo, NSError *error)
 {
     if( error )
     {
         NSLog(@"Image loading error. %@", error );
         return;
     }
 }];

Additional info.
On the Thread that the completionBlock is running is where i get the EXEC_BAD_ACCESS with the following
enter image description here

Has anyone managed to get this to work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文