我正在寻找任何 iOS 设备上可用的所有扩展的列表(以及哪些设备上可用)。尽管进行了大量搜索,但我还没有在苹果文档中找到正确的页面,但我确信它就在某个地方。有什么指点吗?
Best Answer-推荐答案 strong>
这段代码应该打印出所有的扩展:
NSString *extensionString = [NSString stringWithUTF8Stringchar *)glGetString(GL_EXTENSIONS)];
NSArray *extensions = [extensionString componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
for (NSString *oneExtension in extensions)
NSLog(@"%@", oneExtension);
来源:http://iphonedevelopment.blogspot.com/2008/12/opengl-es-extensions-on-iphone.html?m=1
关于ios - 哪些 GLSL ES 扩展可在各种 iOS 设备上使用?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11159811/
|