iOS   发布时间:2022-05-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了创建像素缓冲区Objective-C大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

我想为屏幕外渲染创建一个NSOpenGLPixelBuffer.现在,我甚至无法初始化它.这是代码: NSOpenGLPixelFormatAttribute attribs[] = { NSOpenGLPFAPixelBuffer, NSOpenGLPFANoRecovery, NSOpenGLPFAAccelerated, NSOpenGLPFADepthSiz
我想为屏幕外渲染创建一个NSOpenGLPixelBuffer.现在,我甚至无法初始化它.这是代码

NSOpenGLPixelFormatAttribute attribs[] = {
    NSOpenGLPFAPixelBuffer,NSOpenGLPFANoRecovery,NSOpenGLPFAAccelerated,NSOpenGLPFADepthSize,24,(NSOpenGLPixelFormatAttributE) 0
};

NSOpenGLPixelFormat* format = [[[NSOpenGLPixelFormat alloc] initWithAttributes:attribs] autorelease];
NSOpenGLPixelBuffer* pixBuf = [[NSOpenGLPixelBuffer alloc]
                               initWithTextureTarget: GL_TEXTURE_2D
                               textureInternalFormat: GL_RGBA
                               textureMaxMipMapLevel: 0
                               pixelsWide: 32
                               pixelsHigh: 32];

NSLog(@"pbuf address: %p",pixBuf);

我试图摆弄像素格式和宽度,高度,但似乎没有任何作用.我一再为pixBuf得到零.我在MacOS 10.13上使用Xcode 9.它说NSOpenGLPixelBuffer已被弃用,但它应该仍然有效,对吗?

解决方法

NSOpenGLPixelBuffer已经是 deprecated since OS X Lion,它本身就是 dates back to 2011.难怪你没有了.

Here,Apple提出了一种绘制纹理的新方法

请参阅this example以了解它的需求.

大佬总结

以上是大佬教程为你收集整理的创建像素缓冲区Objective-C全部内容,希望文章能够帮你解决创建像素缓冲区Objective-C所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。