`
sogotobj
  • 浏览: 648510 次
  • 性别: Icon_minigender_2
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

OpenGL ES on iOS

阅读更多

iOS Graphics Overview

core animation是ios图形子系统的基础,UIView对象由core animation layer支持。各种各样的layer更新他们的内容,由core animation动画和合成,并向显示设备呈现。OpenGL ES是Core Animation的客户,要使用OpenGL ES需要创建一个UIView,这个UIView由一个特殊的core animation layer支持,这个特殊的layer是一个CAEAGLLayer对象。CAEAGLLayer是OpenGLES和core animation联系的桥梁。当应用程序渲染完一帧后,CAEAGLLayer的内容被呈现并且和其他view的数据组合。


Overview of OpenGL ES

OpenGL ES命令被提交到rendering context。这些命令可以读取context的状态,改变context的状态,创建修改和销毁OpenGL ES Object,以及提交被渲染的几何体,几何体通过流水线处理最终光栅化到framebuffer。

renderbuffer: 是某种特定格式的2d图形。格式可以是颜色信息,也可以是深度或模板信息。renderbuffer一般不单独使用,而是被收集作为fraembuffer的一部分使用。

Framebuffers: 是图形流水线的最终目的地。一个framebuffer object其实是一个容器,包含了attach上去的纹理和renderbuffer。


iOS Classes

所有的OpenGL ES实现需要提供平台相关的代码创建rendering context用于绘制到屏幕。iOS通过一个Objective-C的接口EAGL实现。几个主要的类:

EAGLContext : 定义了rendering context。应用程序创建和初始化一个EAGLContext,设定他为当前的OpenGL命令的目标。OpenGL命令通常存放在一个context所维护的队列里面,并在之后被执行。EAGLContext也提供了方法将图像呈现给Core Animation。

EAGLSharegroup: 每个EAGLContext对象包含一个EAGLSharegroup对象的引用。当OpenGL ES需要为context分配一个对象时,实际是sharegroup分配并维护对象。这样可以让多个context共享对象。另一种共享对象的方法是单个context,多个framebuffer object,这种情况下不需要切换context,而需要切换target for rendering。

EAGLDrawable Protocol: CAEAGLLayer实现了这个协议,从而可以将OpenGLES renderbuffers和Core Animation图形系统联系起来。


确定OpenGL ES能力

在初始化OpenGL ES rendering context(即EAGLContext)的时候可以确定设备支持的OpenGL ES版本。
创建使用es 1.1的context:
EAGLContext* myContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES1];
创建使用es 2.0的context:
EAGLContext* myContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
如果OpenGL ES的某个实现不支持,initWithAPI会返回nil。
所以,如果想同时支持2.0和1.1,先测试是否能创建2.0的context,如果返回nil,则创建1.1的。
context初始化后,从他的API属性可知道所支持的OpenGL ES版本。


Working with OpenGL ES Contexts and Framebuffers

1)创建EAGL Context
EAGLContext* myContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES1];
[EAGLContext setCurrentContext: myContext];

2)创建 Framebuffer Objects
es2.0直接支持fbo, ios的es1.1通过GL_OES_FRAMEBUFFER_OBJECT扩展支持。fbo允许应用程序精确的控制color,depth,stencil targets的创建。这些targets通常是renderbuffers,即具有一定宽度高度和格式的2d图形像素,另外color target可以指向一个纹理。创建framebuffer的过程是:1 创建一个frame buffer object 2 创建一个或多个targets(renderbuffers or textures),给他们分配空间并attach到fbo上 3 测试framebuffer的完整性。

创建renderbuffer,可以是offscreen, texture(仅限color), Drawable(通过EAGLLayer)




分享到:
评论
2 楼 wangyuchun_799 2011-11-17  
文章留下了,哈哈
1 楼 wangyuchun_799 2011-11-17  
[color=darkred]写的太好了,网上很难找到类似详细而又易懂的文章。以致我冲动的注册了新账号好给你留下评论。继续加油啊,希望你有时间再多写一点,再扩充一下!期待你的更新⋯⋯ :shock: [/color]

相关推荐

    Learning OpenGL ES for iOS a Hands-on Guide to Modern 3D Graphics Programming

    Learning OpenGL ES for iOS a Hands-on Guide to Modern 3D Graphics Programming, 基于iOS 讲解OpenGL ES开发,支持kindle

    opengl es for ios

    "Learning OpenGL ES for iOS: A Hands-on Guide to Modern 3D Graphics Programming" 这本书是了解和学习OpenGL ES在iOS上应用的重要资源。这本书会带领读者从基础开始,逐步掌握3D图形编程的核心概念和技术。内容...

    Learning OpenGL ES for iOS A Hands-on Guide to Modern 3D Graphics

    ### 关于《Learning OpenGL ES for iOS:现代3D图形编程实战指南》的知识点解析 #### 一、OpenGL ES概述 OpenGL ES(OpenGL for Embedded Systems)是OpenGL的一个子集,专为移动设备(如智能手机和平板电脑)设计...

    OpenGL ES 3.0 Programming Guide, 2nd Edition

    All code has been built and tested on iOS 7, Android 4.3, Windows (OpenGL ES 3.0 Emulation), and Ubuntu Linux, and the authors demonstrate how to build OpenGL ES code for each platform. Coverage ...

    简单的OpenGL ES粒子喷射效果

    A lightning-fast particle system for OpenGL ES on iOS. Primitives are generated only once on the CPU, and particle positions are calculated in the vertex shader. Currently only supports constant-color...

    Swift 实现的基于 OpenGL ES3 的涂鸦绘图库,支持自定义纹理、压力感应、自动笔触等特性.zip

    Swift 实现的基于 OpenGL ES3 的涂鸦绘图库,支持自定义纹理、压力感应、自动笔触等特性。.zip,iOS painting library based on Metal. 神笔马良有一支神笔(基于 Metal 的涂鸦绘图库)

    Learning iOS Game Programming

    Learning iOS Game Programming Michael Daley First printing September 2010 This book describes the key components needed to create this 2D game.It covers both the technology,such as OpenGL ES and ...

    Advance Touch Input

    当使用OpenGL ES时,将CAEAGLLayer的presentsWithTransaction属性设置为false即可;而在使用Metal时,MTKView的presentsWithTransaction属性也应设置为false。 接着,我们来看触摸点方案的改进。iOS 9对触控点的...

    Learning IOS Game Programming_A Hands-on

    - **技术选型**:接着讨论了iOS平台上可用的技术栈,特别是针对2D游戏开发常用的OpenGL ES和OpenAL等图形音频库。 **2. 实战案例分析** - **项目准备**:从环境搭建开始,逐步引导读者完成开发前的所有准备工作,...

    Apress.Beginning.iOS.6.Development

    with chapters on storyboards and iCloud, for example, as well as significant updates to existing chapters to bring them in line with all the changes that came with the iOS 6 SDK. You'll have ...

    Games on Symbian OS

    - **Symbian平台上的OpenGL ES**:针对Symbian系统的特点,书中详细讲解了如何在该平台上安装和配置OpenGL ES开发环境,包括所需的工具链和SDK。 - **性能优化技巧**:为了确保游戏在资源有限的移动设备上运行流畅,...

    IOS入门之HelloWorld源代码

    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. } - (void)applicationDidEnterBackground:...

    【Pro.iOS.Apps.Performance.Optimization】[PDF+源代码] [iPhone/iPad/iOS]

    3. **图形性能**:在iOS设备上,优化OpenGL ES和Core Animation性能至关重要。理解图形管道的工作原理,优化纹理和顶点数据,使用CALayer的缓存策略,以及适时清理不再使用的资源,都能提升图形渲染速度。 4. **...

    《Qt on Android 核心编程》PDF版本下载.txt

    例如,利用OpenGL ES进行图形加速、减少内存占用等。 5. **发布流程**:了解如何打包应用程序为APK文件,并将其上传至Google Play商店或其他第三方应用市场。 #### 五、实战案例分析 1. **界面设计**:利用Qt ...

    Beginning iPhone 4 Development Exploring the iOS SDK

    You’ll learn to draw using Quartz 2D and OpenGL ES, add multitouch gestural support (pinches and swipes) to your applications, and work with the camera, photo library, accelerometer, and built-in ...

    ios 学习笔记

    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. NSLog(@"iOS_applicationWillResignActive"); } - ...

    GameAndGraphicsProgrammingForiOSAndAndroidWithOpenglES2FreeBooksOnlinePdf.pdf 英文原版

    Game And Graphics Programming For iOS And Android With Opengl ES 2, Free Books Online Pdf

    AiScene:从AiCubo演变而来,留下了两个不同的模拟

    艾库波v0.6.x现在适用于iOS和OSX v0.4.2(稳定版)可供下载: : 待办事项:•使用预处理标志和主持OpenGL调用将OpenGLES移植回OpenGL•添加用于切换选项的用户界面•创建用于输入自定义行为的用户界面•创建简化的...

    Beginning iPhone Development

    OpenGL ES是专门针对嵌入式系统设计的OpenGL图形API的子集,用于在iOS设备上进行高性能的3D图形处理。 最后,iPhone开发不仅仅局限于编写代码和设计界面,本书还会教授如何将应用与设备硬件相结合。例如,通过使用...

Global site tag (gtag.js) - Google Analytics