OpenGL for Embedded Systems (OpenGL ES) is a subset of the OpenGL 3D graphics API designed for embedded devices such as mobile phones, PDAs, and video game consoles. OpenGL ES is managed by the not-for-profit technology consortium, the Khronos Group, Inc. Last version is OpenGL ES 2.0, publicly ...
25
votes
6answers
26k views
Want to display a 3D model on the iPhone: how to get started?
I want to display and rotate a single 3D model, preferably textured, on the iPhone. Doesn't have to zoom in and out, or have a background, or anything.
I have the following:
an iPhone
a MacBook
...
39
votes
23answers
12k views
OpenGL extensions available on different Android devices [closed]
I'm in the process of writing an OpenGL ES powered framework for my next Android game(s). Currently I'm supporting three different techniques of drawing sprites:
the basic way: using vertex arrays ...
9
votes
3answers
2k views
CADisplayLink OpenGL rendering breaks UIScrollView behaviour
There are a few similar questions out there on SO (links at end), but none of them has allowed me to fix my problem, so here goes:
I'm using OpenGL rendering to make an image tiling and caching ...
12
votes
4answers
12k views
What are some good iPhone 3D / 2D OpenGL ES game tutorials? [closed]
So, we just bought the Iphone Development license, but we are looking for some good 3d/2d opengl es game tutorials.
Does anyone know any good tutorials for this?
Thank You
-Techy
19
votes
9answers
7k views
Learning OpenGL ES 1.x
What is the quickest way to come up to speed on OpenGL ES 1.x?
Let's assume I know nothing about OpenGL (which is not entirely true, but it's been a while since I last used OpenGL). I am most ...
7
votes
2answers
5k views
Rendering to non-power-of-two texture on iPhone
Is it possible to render to texture with OpenGL ES 1.1 on the iPhone (2G and older)? If I bind a texture as a render buffer, it has to be the size of the render buffer, which isn't POT-sized. But ...
87
votes
10answers
44k views
Tutorials and libraries for OpenGL-ES games on Android
What tutorials and libraries are available which can help beginners to develop 2D and 3D games on Android using OpenGL-ES? I'm looking for tutorials which can help me learn OpenGL-ES, and I'm looking ...
20
votes
7answers
21k views
OpenGL ES iPhone - drawing anti aliased lines
Normally, you'd use something like:
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_BLEND);
glEnable(GL_LINE_SMOOTH);
glLineWidth(2.0f);
glVertexPointer(2, GL_FLOAT, 0, points);
...
36
votes
10answers
31k views
Draw text in OpenGL ES (Android)
I'm currently developing a small OpenGL game for the Android platform and I wonder if there's an easy way to render text on top of the rendered frame (like a HUD with the player´s score etc). The text ...
10
votes
1answer
3k views
Faster alternative to glReadPixels in iPhone OpenGL ES 2.0
Is there any faster way to access the frame buffer than using glReadPixels? I would need read-only access to a small rectangular rendering area in the frame buffer to process the data further in CPU. ...
13
votes
3answers
4k views
iOS4: how do I use video file as an OpenGL texture?
I'm trying to display the contents of a video file (let's just say without the audio for now) onto a UV mapped 3D object in OpenGL. I've done a fair bit in OpenGL but have no idea where to begin in ...
2
votes
1answer
975 views
How can I optimize the rendering of a large model in OpenGL ES 1.1?
I just finished implementing VBO's in my 3D app and saw a roughly 5-10x speed increase in rendering. What used to render at 1-2 frames per second now renders at 10-11 frames per second.
My question ...
2
votes
4answers
903 views
How much more complex is it to draw simple curves, lines and circles in OpenGL ES rather than in Quartz 2D?
Is OpenGL ES really so much faster? Why? And is it really so horrible complicated to draw such simple things in OpenGL ES compared to drawing these in Quartz 2D?
For example, I have a UIView subclass ...
3
votes
2answers
2k views
OpenGL Texture Coordinates in Pixel Space
I'm working on an iPhone app that uses OpenGL ES 2 for its drawing. I know that typically texture coordinates are defined in the 0-1 range, but ideally I'd like to map them from 0-1023 (the size of my ...
17
votes
1answer
2k views
What does the Tiler Utilization statistic mean in the iPhone OpenGL ES instrument?
I have been trying to perform some OpenGL ES performance optimizations in an attempt to boost the number of triangles per second that I'm able to render in my iPhone application, but I've hit a brick ...
6
votes
1answer
2k views
Animation in OpenGL ES view freezes when UIScrollView is dragged on iPhone
I have an animated transparent OpenGL ES subview (a modification of Apple's template EAGLView class) which draws a rotating sphere. Just like Apple's example, CADisplayLink is used on devices where ...
1
vote
3answers
416 views
Which books and resources are good to learn OpenGL ES for iPhone OS quickly?
Maybe someone can recommend a book, great website or video training series for this?
13
votes
4answers
1k views
Dealing with different aspect ratios in libgdx
I have implemented some screens using libgdx that would obviously use the Screen class provided by the libgdx framework. However, the implementation for these screens works only with pre-defined ...
3
votes
3answers
3k views
How to get UIImage from EAGLView?
I am trying to get a UIImage from what is displayed in my EAGLView. Any suggestions on how to do this?
1
vote
1answer
3k views
Where to start openGL ES to create and rotate a cube in an iPhone? [closed]
I've done some apps on iPhone using Objevtive-C and Cocos2d, and I'd like to start learning 3D.
My first goal is to make a very simple app that:
- Displays a 3D cube in the center of the screen.
- ...
25
votes
4answers
3k views
How can I improve the performance of my custom OpenGL ES 2.0 depth texture generation?
I have an open source iOS application that uses custom OpenGL ES 2.0 shaders to display 3-D representations of molecular structures. It does this by using procedurally generated sphere and cylinder ...
23
votes
4answers
10k views
Understanding the memory consumption on iPhone
I am working on a 2D iPhone game using OpenGL ES and I keep hitting the 24 MB memory limit – my application keeps crashing with the error code 101. I tried real hard to find where the memory goes, but ...
15
votes
6answers
16k views
Is there a decent OpenGL text drawing library for the iPhone SDK?
I'm trying to figure out a simple to draw some text in OpenGL. My research has shown its a fairly complex task. It involves creating (or generating at runtime) a font atlas texture, and then ...
13
votes
7answers
6k views
iPhone board game: OpenGL ES or CoreGraphics? [closed]
I want to program a board game (similar to checkers) for the iPhone. Would OpenGL ES or CoreGraphics be a better option? What do most games of this type on the App Store use?
10
votes
3answers
7k views
How to use OpenGL ES on a separate thread on iphone?
The OpenGL ES rendering loop is placed on a separate thread in my iphone application. Everything goes fine except that the EAGLContext's presentRenderbuffer method fails. The result is a blank white ...
21
votes
2answers
1k views
Where can I find sample OpenGL ES 2.0 shaders that perform image processing tasks?
Where can I find OpenGL ES 2.0 shaders that can perform the following image processing tasks?
Colorspace transform ( RGB/YUV/HSL/Lab )
Swirling of the image
Converting to a sketch
Converting to an ...
14
votes
6answers
2k views
iOS CVImageBuffer distorted from AVCaptureSessionDataOutput with AVCaptureSessionPresetPhoto
At a high level, I created an app that lets a user point his or her iPhone camera around and see video frames that have been processed with visual effects. Additionally, the user can tap a button to ...
4
votes
2answers
7k views
How to implement water ripples?
I'm working on an iphone game. In that i had to produce water ripples. I dont know how to get that. I heard thatit can be done with openGL. I am very new to this concept. Can any one guide me?
5
votes
3answers
7k views
iPhone OpenGL tutorial
I am planning to make a 2D game on iphone. Is there any tutorial for getting started with opengl 2D example for iphone specially how to animate a sprites and draw tile map. Any other beginners ...
9
votes
2answers
10k views
Android OpenGL .OBJ file loader
There seem to be quite a number of OBJ mesh file loaders out there that people have developed for use on the Android platform. I'm wondering if anyone has any experience with these and can offer a ...
4
votes
3answers
861 views
Transitioning from OpenGL ES 1.1 to OpenGL ES 2.0
It's been a while since iPhone 3GS came out, and now there might be enough market share of OpenGL ES 2.0 supporting devices to warrant developing in it.
But the situation is a lot of developers ...
2
votes
4answers
479 views
Learn OpenGL: where to start or how have you learned OpenGL?
I want to lean OpenGL but I don't know where to star. I know there is a lot API books, but I don't want that.
I want a book, tutorial, etc. where I can see how OpenGL works. I want to star learning ...
3
votes
4answers
2k views
What should I learn Quartz or OpenGL ES?
I'm learning to program for the iPhone. I'm trying to figure out how to do some really cool custom view animations. What should I learn, Quartz or OpenGL ES?
For whoever says OpenGL ES, could I use ...
5
votes
3answers
3k views
iPhone OpenGL ES - How to Pick
I'm working on an OpenGL ES1 app which displays a 2D grid and allows user to navigate and scale/rotate it. I need to know the exact translation of View Touch coordinates into my opengl world and grid ...
4
votes
2answers
6k views
Android: GLES20: Called unimplemented OpenGL ES API
I am getting a "Called unimplemented OpenGL ES API" error, when trying the GLES20 Sample, provided by developer.android.com. I modified the sample, though.
The reason was because
I got an ...
1
vote
1answer
433 views
iOS: playing a frame-by-frame greyscale animation in a custom colour
I have a 32 frame greyscale animation of a diamond exploding into pieces (ie 32 PNG images @ 1024x1024)
my game consists of 12 separate colours, so I need to perform the animation in any desired ...
1
vote
2answers
602 views
Can I mix OpenglES with standard Cocoa widgets on an iPhone app?
In case this is possible, it would be nice to see some examples!
Thanks,
rui
0
votes
3answers
410 views
Is there a maximum number of OpenGL ES calls you can make on iPad?
Can anyone tell me if there is a limit to the maximum number of OpenGL ES calls that can be made on iPad (i.e. OpenGL draw calls and state changes)?
I am working on a game and seeing low FPS, so I ...
23
votes
1answer
17k views
OpenGL ES Render to Texture
I have been having trouble finding straightforward code to render a scene to a texture in OpenGL ES (specifically for the iPhone, if that matters). I am interested in knowing the following:
How do ...
27
votes
21answers
8k views
OpenGL ES 2.0 Extensions on Android Devices
As this page for OpenGL ES 1.x, i collect OpenGL ES 2.x Extensions for Android Devices on this page. The list can be found with my benchmark tool gpubench. These informations can help many game ...
10
votes
5answers
14k views
Where can I find an iPhone OpenGL ES Example that responds to touch?
I would like to find an iPhone OpenGL ES Example that responds to touch.
Ideally it would meet these requirements:
Displays a 3D object in the center of the screen like a cube
Maps a texture to the ...
18
votes
8answers
3k views
Beginner guide to OpenGLES on iPhone
Does anyone know a good beginners guide to using OpenGLES on the iPhone? I have found some but they all require assumed knowledge which I don't have.
16
votes
5answers
6k views
Tutorials or books about OpenGL ES 2.0
Do you know a good tutorial about OpenGL ES 2.0?
I'm going to use it with Android and C++.
Thanks.
8
votes
6answers
4k views
Advice on speeding up OpenGL ES 1.1 on the iPhone
I'm working on an iPhone App that relies heavily on OpenGL. Right now it runs a bit slow on the iPhone 3G, but looks snappy on the new 32G iPod Touch. I assume this is hardware related. Anyway, I ...
8
votes
1answer
1k views
Can example “GLImageProcessing” work with multi filters
I use the example GLImageProcessing, but it can not process the image with both brightness and contrast, so i write the code to adjust both brightness and contrast, but it can't work at all, can ...
22
votes
1answer
2k views
Hardware-accelerated OpenVG implementation on Desktop based on OpenGL ES
I'm currently trying to get OpenVG up and running on my desktop. The problem comes here: I am / will be developing an application for a Windows CE device (with .NET compact framework), which has ...
11
votes
3answers
4k views
Choose OpenGL ES 1.1 or OpenGL ES 2.0?
I'm going to start a new cross-plattform openGL project (primary for iPhone & PC). So theres the main question: targeting for OpenGL ES 1.1 or OpenGL ES 2.0? Or both? So far I read Open GL ES 1.1 ...
5
votes
1answer
2k views
Android: Deciding between SurfaceView and OpenGL (GLSurfaceView)
Is there a way to decide up front based on the expected complexity of a game/app in the planning phase whether to use regular Canvas drawing in a SurfaceView or to go with OpenGL?
I've been playing ...
4
votes
3answers
4k views
Beginners guide to 3D programming in IPhone SDK
I'm thinking of starting a project to make a game, maybe just a simple one, but still a game in 3D for the IPhone.
Though i still have a long way to go, learning objective-C and so on, but a question ...
4
votes
2answers
741 views
Learning Graphics Framework for iPhone Development
I have some development experience of CocoaTouch Layer, Core Service Layer iPhone Applications.
Now, I have to migrate for some pure 2d and 3d graphical iPhone Applications.
For that as per my ...