Subset of the OpenGL 3D graphics API designed for embedded devices such as mobile phones.

learn more… | top users | synonyms (1)

10
votes
2answers
4k views

Why is glReadPixels() failing in this code in iOS 6.0?

The following is code I use for reading an image from an OpenGL ES scene: -(UIImage *)getImage{ GLint width; GLint height; glGetRenderbufferParameteriv(GL_RENDERBUFFER, ...
67
votes
12answers
48k 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 ...
15
votes
4answers
16k 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
22
votes
9answers
8k 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

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 ...
36
votes
6answers
34k 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 ...
28
votes
1answer
10k 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. ...
17
votes
4answers
5k 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 ...
10
votes
2answers
8k 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 ...
118
votes
10answers
60k views

Tutorials and libraries for OpenGL-ES games on Android [closed]

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 ...
44
votes
23answers
17k 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 ...
15
votes
1answer
1k views

Rendering meshes with multiple indices

I have some vertex data. Positions, normals, texture coordinates. I probably loaded it from a .obj file or some other format. But each piece of vertex data has its own index. Can I render this mesh ...
17
votes
4answers
943 views

Appropriate multiplication of matrices for rotation/translation

In order to rotate/translate object (rotation only about z-axis and translation only in xy plane) not just w.r.t to global center (device center) but also w.r.t other arbitrary points, I created an ...
3
votes
1answer
5k views

Drawing a sphere in OpenGL ES

I want to draw a sphere, I know how to do it in OpenGL using calls such as glBegin() & glEnd(). But there is nothing in ES. Suggestions/Tutorial links?
27
votes
7answers
31k 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); ...
30
votes
2answers
5k 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 ...
8
votes
2answers
5k views

Learning OpenGLES 2.0 on iOS [closed]

I'm a beginner with OpenGL ES 2.0 and I'm looking for a good book/resource that will help me with my learning. I've found several books: OpenGL® ES 2.0 Programming Guide iPhone 3D Programming: ...
19
votes
8answers
19k 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 ...
15
votes
3answers
8k 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 ...
4
votes
4answers
4k 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
5k 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. - ...
9
votes
1answer
5k 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 ...
6
votes
3answers
5k views

Any one know of an OpenGL ES example of an interactive globe/earth for the iPhone

I am looking for an example that renders an interactive earth similar to the one in the Smule products. Any help will be great even if it is just part of the solution.
21
votes
1answer
4k 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 ...
26
votes
2answers
3k views

Explicit vs Automatic attribute location binding for OpenGL shaders

When setting up attribute locations for an OpenGL shader program, you are faced with two options: glBindAttribLocation() before linking to explicitly define an attribute location. or ...
21
votes
4answers
2k views

Is Google's Android OpenGL tutorial teaching incorrect linear algebra?

After helping another user with a question regarding the Responding to Touch Events Android tutorial, I downloaded the source code, and was quite baffled by what I saw. The tutorial seems to not be ...
9
votes
2answers
1k views

ipad 3 - openGL bug with kEAGLDrawablePropertyRetainedBacking and retina?

i have an iOS openGL app which uses the kEAGLDrawablePropertyRetainedBacking property to draw the current frame on top of the previous frame. it's a cheap way of getting effects like motion trails. ...
13
votes
3answers
11k views

Does the Android Emulator support OpenGL ES 2.0?

This article http://cobworks.ca/2010/04/19/why-android-market-has-no-games/ suggests that it does not, but I was hoping something might have changed since April.
11
votes
3answers
13k 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 ...
25
votes
2answers
22k 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 ...
3
votes
1answer
4k views

Apply custom filters to camera output

How do I apply custom filters to single frames in the camera output, and show them. What I've tried so far: mCamera.setPreviewCallback(new CameraGreenFilter()); public class CameraGreenFilter ...
7
votes
1answer
2k 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 ...
7
votes
2answers
12k views

How to draw a texture as a 2D background in OpenGL ES 2.0?

I'm just getting started with OpenGL ES 2.0, what I'd like to do is create some simple 2D output. Given a resolution of 480x800, how can I draw a background texture? [My development environment is ...
32
votes
4answers
6k 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 ...
15
votes
2answers
20k 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 ...
19
votes
8answers
4k 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.
8
votes
3answers
8k 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?
16
votes
7answers
8k 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?
14
votes
3answers
10k 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 ...
7
votes
3answers
10k views

How do I make a water effect view with openGLES on the iPhone?

I found this vid: http://www.youtube.com/watch?v=eVi6ThY3LRs I wonder if that's some kind of standard effect of openGLES. I'm pretty sure it is, since I have seen this pretty often. KoiPond uses it, ...
21
votes
5answers
8k 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 ...
2
votes
2answers
2k views

iPhone OpenGL ES 2.0 - Pixel Perfect Textures

How can I get my textures to align with the screen pixels for pixel perfect graphics in OpenGL ES 2.0? This is critical for a project I'm working on which uses pixel art graphics. Any help on this ...
6
votes
1answer
2k views

How can you apply distortions to a UIImage using OpenGL ES?

Is there any way to create effects like dents, pinching, twisting, squashing, etc. on a UIImage using OpenGL ES as in the iPhone application PhotoTwist? Are there any references or guidelines for ...
4
votes
4answers
1k views

How to get CATransform3D from Projection and ModelView matrices?

all, I've got an iphone project that draws a 3D model using OpenGL-ES for a given model view matrix and given projection matrix. I needed to replace 3D model with CALayer, so I put values of model ...
6
votes
3answers
4k 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 ...
1
vote
2answers
1k views

Undo drawing in Paint Application

I am making a paint application using OpenGl framework and I'm stuck at UNDO/REDO option.. The code I implemented is like this: -(void)undo_called { artbrushAppDelegate *app=(artbrushAppDelegate ...
32
votes
4answers
14k 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 ...
32
votes
22answers
13k views

OpenGL ES 2.0 Extensions on Android Devices [closed]

As this page for OpenGL ES 1.x, I collect OpenGL ES 2.x Extensions for Android Devices on this page. The listing can be found with my benchmark tool gpubench. This information can help many game ...
13
votes
6answers
18k 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 ...
15
votes
6answers
5k 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 ...

1 2 3 4 5 18