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. OpenGL ES 2.0 was publicly released in ...
16
votes
2answers
577 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 ...
15
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.
13
votes
1answer
391 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
6answers
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 ...
11
votes
1answer
406 views
Pixel based collision detection problem with OpenGLES 2.0 under Android
This is my first post here, therefore apologize for any blunders.
I'm developing a simple action game with the usage of OpenGL ES 2.0 and Android 2.3. My game framework on which I'm currently working ...
9
votes
1answer
2k views
In OpenGL ES 2.0 / GLSL, where do you need precision specifiers?
Does the variable that you're stuffing values into dictate what precision you're working with, to the right of the equals sign?
For example, is there any difference, of meaning, to the precision ...
9
votes
3answers
2k views
Javascript and WebGL, external scripts
Just curious; How do I place my webgl shaders, in an external file?
Currently I'm having;
<script id="shader-fs" type="x-shader/x-fragment">
#ifdef GL_ES
precision ...
9
votes
3answers
3k 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 ...
8
votes
2answers
498 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 ...
8
votes
1answer
846 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
...
7
votes
2answers
2k views
OpenGL ES 2.0 shader examples for image processing?
I am learning shader programming and looking for examples, specifically for image processing. I'd like to apply some Photoshop effect to my photos, e.g. Curves, Levels, Hue/Saturation adjustments, ...
7
votes
3answers
1k views
OpenGL ES 2.0 debugging
So, I have an OpenGL ES 2.0 app. It compiles and runs in the iPhone/iPad simulators, on a real iPhone/iPad, and under Windows using Imgtec's emulator libraries (i.e. PVRVframe).
In said app, I have ...
6
votes
1answer
131 views
locationInView ignoring orientation
the coordinates returned by uitouch's locationInView are ignoring device orientation -
I have a uiview that properly rotates, but locationInview always returns as if it is portrait...the view ...
5
votes
4answers
67 views
Is there a way to check if Android device supports openGL ES 2.0?
I need to check dynamically if the used device supports openGL ES 2.0.
How can i do that?
5
votes
2answers
780 views
Most efficient method for GLSL edge detection shader
I'm looking for a quick and dirty, very efficient edge detection shader or edge mesh for a video application. Since this will be done on a mobile device, I need something that places performance over ...
5
votes
2answers
1k views
Full screen background texture with OpenGL performance issue (iPad)
I am quite puzzled with the poor performance I'm seeing when drawing a full screen background using a textured triangle mesh in OpenGL: drawing just the background and nothing else maxes out at 40 fps ...
4
votes
1answer
625 views
OpenGL ES 2.0 : Seeking VBO Performance/Optimisation Tips For Many Moving Vertices
In my ongoing attempt to convert to OpenGL ES 2.0 from ES 1.x I'm currently converting some code to use Vertex Buffer Objects ('VBOs') rather than the existing unbuffered glDrawArrays calls.
I've set ...
4
votes
2answers
423 views
Render multiple objects with OpenGL ES 2.0
I am trying to learn OpenGL ES 2.0 to do some iPhone game development. I have read through multiple tutorials and some of the OpenGL ES 2.0 spec. All of the examples I have seen have created a ...
4
votes
1answer
137 views
Is it possible to persistently change the values of a VBO on the iPhone OpenGL ES 2.0 inside a vertex shader?
I am an Opengl ES 2.0 newbie (and GLSL newbie) so forgive me if this is an obvious question.
If I have a VBO that I initialize once on the CPU at the start of my program is it possible to then use ...
4
votes
1answer
240 views
Draw edges of a polygon with OpenGL shaders
I was wondering if it was possible to draw the edges of a rendered polygon with a specific color using a fragment shader, as in this example picture:
Or should I just render those separately?
4
votes
3answers
624 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 ...
4
votes
1answer
478 views
iOS OpenGL ES Logical Buffer Loads
Slogging through the list of OpenGL API usage performance warnings given by the Analyze instrument, I am finding that we are generating several logical buffer loads per frame - places where we are not ...
4
votes
2answers
3k views
GLSL for simple water surface effects
I'm looking for some pointers on how to implement simple water surface effects in OpenGL ES 2.0. Nothing fancy like reflection or refraction, just a basic ripple/wave effect that modulates over ...
4
votes
1answer
1k views
Android Live Wallpapers with OpenGL ES 2.0?
Has anyone managed to get OpenGL ES 2.0 working in a live wallpaper? I have a class that uses OpenGL ES 2.0 and runs fine as a Renderer for a GLSurfaceView. However, I want it to function as a live ...
4
votes
1answer
443 views
OpenGL ES Problem on Nexus S
Code that works on the Nexus One will not work properly on the Nexus S.
Textures don't seem to render.
Anyone got any ideas?
3
votes
1answer
73 views
How to link game engine and game for Android?
I am working on a game engine written in C++.
My engine uses OpenGLES2.
Now I want to make port for Android, of course by using jni.
Also I have got a game written on this game engine.
I wrote a ...
3
votes
1answer
55 views
WebGL render buffers receiving skewed pixel values from shader
I'm rendering a scene of polygons to multiple render targets so that I can perform postprocessing effects. However, the values I'm setting in the fragment shader don't seem to be accurately reflected ...
3
votes
3answers
158 views
OpenGLES 2.0 separate buffers for vertices, colors and texture coordinates
I've been learning OpenGL for a few days now by following some tutorials and coding some experiments of my own. But there is one thing I really don't understand which blocks me from continuing. I've ...
3
votes
4answers
149 views
Android activity silently exiting
My app has a splash screen activity and that starts an intent for the main activity which has an openGL view in it.
Some users are reporting that the game exits and goes back to the splash.
I'm ...
3
votes
1answer
181 views
Using WebGL or OpenGL ES 2, how do I render the contents of an RBO onscreen?
Using WebGL (which is constrained to the OpenGL ES 2 API), I am successfully rendering to texture and then displaying that texture onscreen. Because it is a texture, it is not being antialiased. If ...
3
votes
2answers
502 views
OpenGL ES 2.0 render to texture
I'm trying to render to a texture using OpenGL ES 2.0, but I can't seem to make it work.
This is how I proceed:
struct RenderTexture
{
GLuint framebuffer;
GLuint tex;
...
3
votes
1answer
397 views
How to get a “Glow” shader effect in OpenGL ES 2.0?
I'm writing a 3D app for iOS. I'm new to OpenGL ES 2.0, so I'm still getting myself around writing basic shaders.
I really need to implement a "Glow" effect on some of my models, based on the ...
3
votes
1answer
195 views
OpenGL ES 2.0 texture turns out black
I'm trying to render a texture on a plain with OpenGL ES 2.0 for the first time. I must be doing something wrong because it's always black.
The texture comes from an image in resources.
This is the ...
3
votes
1answer
133 views
Is it Possible to give effect like Vertex Shader and Fragment Shader to the Android Camera Preview , and Save the Captured image with OpenGLES?
This two are My VertexShader and Fragment Shader file:
Vertex Shader File:
attribute vec4 position;
attribute vec4 inputTextureCoordinate;
varying vec2 textureCoordinate;
varying vec4 co;
void ...
3
votes
1answer
222 views
What is glVertexAttrib (versus glVertexAttribPointer) used for?
I understand that glVertexAttribPointer will set the values for a vertex attribute based on the pointed-to array. What is glVertexAttrib for, though? It looks like it just sets a single (possibly ...
3
votes
1answer
404 views
Clipping-planes in OpenGL ES 2.0
I need to clip a few hundred objects under a clipping plane in OpenGL ES 2.0 and would appreciate ideas from people more experienced with this subset of OpenGL.
In OpenGL ES 1.x there is glClipPlane. ...
3
votes
1answer
402 views
Use hardwareAcceleration flag with Canvas.clipPath
I'm porting a project made for the Galaxy Tab 1, for Galaxy Tab 2, but the apk runs slowly so I added the hardwareAccelerated flag on the AndroidManifest.XML of the new application.
But running give ...
3
votes
1answer
327 views
How do you implement glOrtho for opengles 2.0? With or without tx,ty,tz values from the glOrtho spec?
Im trying to implement my own glOtho function from the opengles docs http://www.khronos.org/opengles/documentation/opengles1_0/html/glOrtho.html
to modify a Projection matrix in my vertex shader. It's ...
3
votes
1answer
271 views
Is deferred rendering/shading possible with OpenGL ES 2.0 ?
Has anyone implemented deferred rendering/shading under OpenGL ES 2.0? It doesn't support MRTs, so with only one color buffer, it's not something that can be implemented in the "usual" manner.
...
3
votes
2answers
545 views
Creating blur filter with a shader - access adjacent pixels from fragment shader?
I want to create a blur effect using a fragment shader in OpenGL ES 2.0. The algorithm I am interested in is simply an averaging blur - add all adjacent pixels to myself and divide by 9 to normalize. ...
3
votes
1answer
306 views
OpenGL texture not following geometry
I'm struggling with the jump in complexity from OpenGL ES 1.x to 2.0. I'm trying to apply a texture to a rectangular plane and then be able to scale and translate that plane while keeping the texture ...
3
votes
2answers
273 views
glError 1282 in the Nexus S but not in the Nexus One
I am creating a live wallpaper using openGL ES 2.0.
The app works great in my nexus one but it doesn't not show anything in a Nexus S.
Things I have tested so far:
I have already checked this ...
3
votes
1answer
172 views
Smooth points OpenGL ES 2.0 using shaders
I am drawing some points using glDrawArrays(GL_POINTS, ...) and I would like to make them smooth round points instead of the squares. I know that there is no fixed function pipeline in OpenGL ES 2.0 ...
3
votes
2answers
344 views
glmapbufferOES and glunmapbuffer undeclared in opengl-es 2.0
I am doing coding in ubuntu 10.10 with kronos headers but i am stuck because whenever i try to compile the code they there is an error comes :
glmapbuffer undeclared
glunmapbuffer undeclared
i have ...
3
votes
1answer
125 views
Same game in OGL ESv2 doesnt work with OGL3
I've coded a engine which is able of drawing with OpenGL ESv2 or OpenGL 3 Core Profile API.
But recently the OpenGL 3 part got broken and I can't remember what I changed nor can I look in the svn ...
3
votes
2answers
612 views
How do I replace glBegin() and related functions in OpenGL ES 2.0?
I have OpenGL code like the following that I'd like to port to OpenGL ES 2.0:
for (surfnum=0;surfnum < surftotal;surfnum++){
for (i=0;i<triNum[surfnum];i++){
...
3
votes
1answer
101 views
How to determine if a texture upload was successful in OpenGL ES 2?
In the good old days of regular OpenGL, it was fairly easy to determine if a texture upload was successful - after calling glTexImage2D you could use glGetTexLevelParameteriv with GL_TEXTURE_WIDTH and ...
3
votes
1answer
598 views
How to write/prevent writing to OpenGL depth buffer in GLSL
I want to write to the OpenGL depth buffer only if the current pixel has an alpha > 0.5
how to do that?
If the pixel has alpha < 0.5, i want to render the color but not write it's depth to the ...
3
votes
2answers
957 views
Multi-textured Point Sprites in OpenGL ES2.0 on iOS?
I am trying to make a multi-textured point sprite for an iphone application using OpenGL ES 2.0. I can't find any examples of this on web, and it doesn't seem to be working. Is there some built-in ...
3
votes
5answers
293 views
What OpenGL version to choose for cross-platform desktop application
I'm working on some cross-platform desktop application with heavy 2-D graphics. I use OpenGL 2.0 specification because I need vertex shaders. I like 3.2+ core API because of it's simplicity and power. ...