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

learn more… | top users | synonyms (1)

121
votes
10answers
61k 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 ...
68
votes
12answers
50k 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 ...
64
votes
4answers
28k 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 ...
54
votes
4answers
1k views

GLSurfaceView inside fragment not rendering when restarted

I have a GLSurfaceView set up and rendering as expected using a GLSurfaceView.Renderer. My App uses fragments from the android support package. When I navigate to a new fragment surfaceDestroyed is ...
45
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 ...
37
votes
6answers
35k 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 ...
32
votes
2answers
6k 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 ...
32
votes
22answers
14k 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 ...
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 ...
31
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 ...
29
votes
1answer
11k 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. ...
28
votes
2answers
4k 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 ...
28
votes
3answers
6k 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 ...
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); ...
26
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 ...
25
votes
2answers
6k 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 ...
24
votes
2answers
8k 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 ...
24
votes
3answers
15k views

OpenGL vs OpenGL ES 2.0 - Can an OpenGL Application Be Easily Ported?

I am working on a gaming framework of sorts, and am a newcomer to OpenGL. Most books seem to not give a terribly clear answer to this question, and I want to develop on my desktop using OpenGL, but ...
23
votes
1answer
3k 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 ...
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 ...
22
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 ...
22
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 ...
21
votes
7answers
29k 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 ...
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 ...
20
votes
6answers
5k 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 ...
20
votes
2answers
9k views

How to use onSensorChanged sensor data in combination with OpenGL

I have written a TestSuite to find out how to calculate the rotation angles from the data you get in SensorEventListener.onSensorChanged(). I really hope you can complete my solution to help people ...
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 ...
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.
19
votes
3answers
2k 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 ...
19
votes
5answers
1k 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
2answers
37k views

Android: 2D. OpenGl or android.graphics?

I'm working with my friend on our first Android game. Basic idea is that every frame of the game the whole surface is redrawn (1 large bitmap) in 2 steps: Background with some static image (PNG) ...
18
votes
7answers
8k 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 ...
18
votes
1answer
1k views

Trouble with Native OpenGL Renderer

I am using Native code to render OpenGL in Android and I get periodic errors that look like this: ERROR/IMGSRV(1435): frameresource.c:610: WaitUntilResourceIsNotNeeded: PVRSRVEventObjectWait ...
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 ...
17
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
964 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 ...
17
votes
6answers
996 views

How to synchronize OpenGL drawing with UIKit updates

In our app we have UIScrollView above CAEAGLLayer. UIScrollView contains some UIViews (red rectangles). In CAEAGLLayer we draw white rectangles. Centers of white rectangles are the same as the centers ...
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?
16
votes
3answers
7k views

Android OpenGL Texture Compression

I need some help finding information (or an example) of how to use texture compression for Android. I have a lot of PNG's right now and I need to reduce the amount of memory they take up. I was ...
16
votes
2answers
6k 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 ...
16
votes
2answers
5k views

iPhone / iOS custom control

I would like to know how to create a custom iPhone control from scratch, or using an existing library or framework. I have seen the three20 library, aswell as tapku and touch customs which are nice ...
16
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 ...
16
votes
3answers
8k 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 ...
15
votes
2answers
13k views

PVR textures versus PNG in OpenGL ES

I'm developing a 2D application for the iPhone that renders lots of textures. Most of them are loaded from PNG files with alpha transparency at the moment. As a test I've been playing around with ...
15
votes
3answers
12k views

Android openGL ES glDrawArrays or glDrawElements?

What is the best way? If i use drawarrays, or if i use drawelements? Any differents?
15
votes
1answer
6k views

Passing a variable to a OpenGL GLSL shader

I'm writing an iPhone app which uses GLSL shaders to preform transformations on textures, but one point that I'm having a little hard time with is passing variables to my GLSL shader. I've read that ...
15
votes
2answers
8k 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 ...
15
votes
3answers
18k views

Android NDK - OpenGL ES Tutorial/Libraries

Hey! Im looking for an OpenGL library/framework to handle basic drawing code etc for me. Otherwise im also looking for some NDK and OpenGL ES tutorials, I cant seem to find anything out there! Any ...
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
15
votes
3answers
9k 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 ...

1 2 3 4 5 145