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

learn more… | top users | synonyms (1)

74
votes
9answers
36k 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 ...
35
votes
22answers
10k views

OpenGL extensions available on different Android devices

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 ...
26
votes
9answers
24k 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 ...
25
votes
21answers
6k 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 ...
23
votes
3answers
11k views

Android OpenGL ES and 2D

Well, here's my request. I don't know OpenGL already, and I'm not willing to learn it, I want to learn OpenGL ES directly since I'm targeting my development to android, however. I want to learn openGL ...
21
votes
1answer
15k 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 ...
21
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 ...
21
votes
6answers
23k 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 ...
20
votes
4answers
2k 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 ...
20
votes
4answers
8k 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 ...
19
votes
5answers
980 views

iPhone Game Developers - What does your toolchain look like?

For example: source control: git + adobe drive 3d: google sketchup -> *.dae -> blender -> *.obj 2d: photoshop/illustrator -> *.png audio: audacity -> *.caf code: ArgoUML, Xcode, Textmate test: ...
18
votes
9answers
6k 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 ...
16
votes
7answers
16k 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); ...
16
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.
15
votes
2answers
3k views

iOS Games and Run-Loop Management

First, my question: How do you manage your iOS Run-Loop? Next my reason: I've been researching this with a variety of prototypes (v. early stage development) and have found a number of perplexing ...
14
votes
2answers
1k views

Rendering SVG with OpenGL (and OpenGL ES)

I am currently investigating the possibility of rendering vector graphics from an SVG file using OpenGL and OpenGL ES. I intend to target Windows and Android. My ideal solution would be to have a ...
14
votes
4answers
4k 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.
14
votes
7answers
4k views

Can I make a rather native C++ app with Android?

I'm interested in the following features: Writing an app for Android Market that is written completely in C++ (a port of existing product actually). Use fast screen-buffer pixel pushing (or rather ...
14
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 ...
13
votes
1answer
320 views

how to use android camera with OpenGL ES to work?

I want to use the OpenGL ES for the Android camera preview and Save the captured Image. I like to use the OpenGL ES in Android camera to give some effect to the Android camera. So please anyone tell ...
13
votes
1answer
448 views

How to create new demon.model in openGLES?

I want to create a rotating object with 3d effect , I am using the sample project iPhoneGLEssentials provided by developer.apple.com. In the sample project demon.model file is used , I need to create ...
13
votes
4answers
820 views

Tools for GLSL editing

I'm looking for some kind of tool to work with GLSL. I want to experiment with shaders in the WebGL application, so what I'm looking for is something like RenderMonkey. As far as I know - RenderMonkey ...
13
votes
6answers
14k 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 ...
12
votes
1answer
375 views

EAGLView to UIImage color conversion problem

I have an EAGLView (taken from Apple's examples) which I can successfully convert to a UIImage using this code: - (UIImage *)glToUIImage:(CGSize)size { NSInteger backingWidth = size.width; NSInteger ...
12
votes
4answers
11k 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
12
votes
2answers
4k views

What's “in” and “out” of OpenGL-ES? (Porting from OpenGL)

It seems that all of the documentation I can find about OpenGL-ES says something to the effect of "OpenGL-ES is just like OpenGL, but without a lot of stuff. For example, there's no glBegin or ...
11
votes
4answers
1k views

OpenGL ES, OpenFrameworks, Cinder and IOS creative development

I'm in the middle of a difficult choice. I'd like to learn a language that can help me create application with a strong artistic/creative/graphic component and use it for commercial projects for my ...
11
votes
5answers
1k views

Best process to show an OpenGL Animation in iPhone

I'm having issues being able to import a bone and skeletal animation from Maya to Blender to iPhone. Here's what I've done: install the ColladaMaya plugin to export a DAE for Blender to export used ...
11
votes
3answers
4k views

Any GUI libaray for iPhone & Android based on OpenGL ES?

Since both iPhone and Android support OpenGL ES, is there any open source or commercial GUI library we can use for these two platforms? Or is it doable (or how difficult) to port an application from ...
11
votes
1answer
993 views

Recording custom overlay on iPhone

I'm interested in recording a video with a custom overlay which would end up in the video itself. They could be UIImage or even better, an OpenGL viewport, is there even such possibility right now on ...
10
votes
1answer
275 views

OpenGL ES Interleaving Vertex Buffer Object

I've been looking at the new OpenGL framework for iOS, aptly named GLKit, and have been playing around with porting some existing OpenGL 1.0 code to OpenGL ES 2.0 just to dip my toe in the water and ...
10
votes
5answers
1k 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 ...
10
votes
3answers
608 views

Android NDK OpenGL ES 2.0 Texture Pitch

Is there any way to blit a texture in opengl es 2.0 with a pitch that differs from its width. Normally I would fix this by using a PBO or adjusting the GL_PACK_ROW_LENGTH via glPixelStore. However ...
10
votes
1answer
2k views

Writing to then reading from an offscreen FBO on iPhone; works on simulator but not on device?

I'm trying to do some image manipulation on the iPhone, basing things on the GLImageProcessing example from Apple. Ultimately what I'd like to do is to load an image into a texture, perform one or ...
10
votes
3answers
3k views

opengl es 2.0 on linux

I would like to develop openGLES 2.0 apps on my ubuntu machine. I could not find any libraries/emulators that support ES 2.0 yet. Any suggestions?
10
votes
3answers
6k 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 ...
9
votes
4answers
3k 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 ...
9
votes
1answer
2k views

How to update 2D iPhone game to be compatible w/ iPhone 4's retina display?

What are the necessary steps to update an existing OpenGL ES 1.1 based 2D iPhone game to be compatible w/ the iPhone 4's retina display? I'm still using the Texture2D class that came w/ Apple's ...
9
votes
2answers
3k views

OpenGL Beginner Tutorials

I would like to being OpenGL programming for mobile phones such as iPhone, Java ME and Android. Are there any good beginner tutorials to start with?
9
votes
5answers
12k 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 ...
9
votes
7answers
3k views

Is OpenGL required for my iPhone game?

On an iPhone: If I am writing a game that has multiple levels, with multiple animations (image sequences), jpg and png (transparent), some full screen and some not, some looped and some played once ...
9
votes
2answers
5k views

In OpenGL ES, how do I load a texture that has transparent pixels?

And then have display correctly? An example would be having a round ball in a rectangle while being able to see another texture in the background. edit: At the moment, when I load the texture the ...
9
votes
5answers
17k views

Is there a way to import a 3D model into Android?

To all 4 Android developers out there :) Is it possible to create a simple 3D model (for example in 3DS MAX) and then import it to Android somehow? I work in Eclipse with Android plugin, if that's of ...
8
votes
4answers
292 views

What would be a method for creating a number counter in Android?

I want to create a scrolling counter that rises at a rate I give it for an Android app, I feel like there is no Android widget that does this well in the SDK and I wanted some idea how this should be ...
8
votes
0answers
588 views

How can I use Multiple GLSurfaceView components in the same Layout?

I'm writing an Information Visualization API for Android and ran into a problem trying to place two units of a custom GLSurfaceView into a Layout. The Custom GLSurfaceView at this point is simply an ...
8
votes
1answer
771 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 ...
8
votes
1answer
242 views

Why does my performance increase when touching the screen?

For some reason my FPS jumps up considerably when I move my mouse around on the screen (on the emulator) while holding the left mouse button. Normally my game is very laggy, but if I touch the screen ...
8
votes
4answers
306 views

OpenGL performance on iPhone: glAlphaFuncx on the trace

This is kind of weird, but I noticed that up to 40 percents of the rendering time is spent inside glAlphaFuncx. I know that alpha testing is very expensive, but the interesting thing is I do not use ...
8
votes
2answers
5k views

What is the easiest way to draw texture with OpenGL ES?

I saw this Google IO session: http://code.google.com/intl/iw/events/io/2009/sessions/WritingRealTimeGamesAndroid.html He says that the draw_texture function is the fastest and VBO is 2nd faster. But I ...
8
votes
3answers
2k views

Prevent onPause from trashing OpenGL Context

I'm writing an Android application that uses OpenGL ES (GLSurfaceView and GLSurfaceView.Renderer). The problem is that when the user switches applications and then switches back to my app, the ...

1 2 3 4 5 78