Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
489 views

Android EGL/OpenGL ES Frame Rate Stuttering

TL;DR Even when doing no drawing at all, it seems impossible to maintain a 60Hz update rate on an OpenGL ES rendering thread on an Android device. Mysterious spikes frequently crop up (demonstrated ...
2
votes
1answer
102 views

OpenGL tearing effect when rendering on EGL

I have some Qt applications rendered using OpenGL on surfaces provided by an EGL implementation on an ARM board. I'm experiencing some kind of tearing in rendering. By reading around, I found out it ...
1
vote
5answers
68 views

Confussion between OPEN GL ES and EGL library

I was reading android source code in that I am not getting what does OPEN GL ES library do and what does EGL library do.? Is there any relationship between this two libraries? I have looked at ...
1
vote
2answers
1k views

What is EGL And How Can I Use It

Can Anybody explain me what is EGL and what it does? How can i use EGL with OpenGL-ES On Linux? Is EGL a Layer Between Hardware And Operating System?
0
votes
1answer
92 views

eglCreateWindowSurface on ICS, and switching from 2D to 3D

I'm trying to make an NDK-based game work on Android ICS. It worked fine on Honeycomb and Gingerbread. The game uses some 2D rendering, some 3D rendering, switching between the two at various stages ...
0
votes
0answers
65 views

What are likely causes for “WSEGL_WaitNative: Unrecognized engine” errors? (Android NDK)

An Android app I've written is producing the following error message when run on one user's Galaxy Nexus: E/IMGSRV (31994): :0: WSEGL_WaitNative: Unrecognized engine Strangely, when running on ...
0
votes
0answers
40 views

EGL is lost everytime on turning the device?

I didn't find any answers to my questions, because my problem seems to be untypical! First off all, I made some tutorials to get explained how GLES20 should work correctly on Android-Smartphones. For ...
0
votes
1answer
45 views

How to create an invisible X11 window for GPGPU?

Is it possible to create an invisible X window? For initialization of an OpenGL ES 2.0 context, one has to create a X window manually, but I can't find a way to make it invisible. Since I'm only doing ...
0
votes
0answers
167 views

Android NDK: How to get the current EGLConfig?

I am having problems with EGL in my app and am trying to investigate what is happening. One of the things I would like to know is what are the config attributes of the EGLConfig currently in use. I ...
0
votes
1answer
131 views

How to set OpenGL version in either EGL or GLSurfaceView?

For the OpenGL Android project I am working on, I need ES 2.0, but I need the control of rendering buffers/surfaces I am accustomed to achieving by using EGL. For I cannot figure out any way to render ...
0
votes
0answers
291 views

Android NativeActivity OpenGL-ES native app: How to get a less than full screen surface

I have native Android app using Google's native_app_glue wrapper. I would like to obtain a less than full-screen surface for rendering GLES into. In GLES apps using java layer derived from ...
0
votes
1answer
40 views

EGL_KHR_IMAGE <- what is it and when should I use it

Can someone explain in simple terms what an egl image is, and an example of when I would want to use one? I know it can significantly increase performance, but I'm having trouble finding ...
0
votes
1answer
106 views

EGL_BAD_MATCH with Droid/Droid 2

I've been testing my OpenGL ES 2 app on various phones. I've ran into a problem with the Droid and Droid 2. Every EGL config I try results in an EGL_BAD_MATCH. I've tried many combinations of EGL ...