Subset of the OpenGL 3D graphics API designed for embedded devices such as mobile phones. This version 2.0 eliminates most of the fixed-function rendering pipeline in favor of a programmable one.
0
votes
0answers
16 views
Shader doesn't work - OpenGL ES
I have created a program that allows me to display 3D objects and now I want to make a cut in relation to another object. Here is my result : screen.
The screen shows that we can see through the cut ...
0
votes
1answer
23 views
Texture rendering appears Dull (openGL ES 2.0 iOS)
Ive just started with openGLES2.0 on iOS and im trying to render a texture onto screen.
The problem is that the texture appears different (dull and almost monochromatic) as compared to the real ...
0
votes
1answer
20 views
iOS Using GLKMathUnproject to find screen point in world space
How to use GLKMathUnproject to determine location in world space?
The user needs to select one of several objects in world space.
In doc it says
GLKVector3 GLKMathUnproject (
GLKVector3 window,
...
1
vote
1answer
22 views
Is glDrawArray preferred way for dynamic vertices?
I am currently using glDrawElements to render a mesh (terrain) that may have occasional udpates to it (terrain morphing). Wondering if i should technically go with glDrawArrays instead?
0
votes
0answers
10 views
Video play freezes randomly in the openGL surface with MeidaPlayer feeds in the video file
In Android, I create a OpenGLSurface, and bind the texture to the MediaPlayer output.
The video is about 10 secs.
Now the video frames can play in the OpenGL surface for about 5 secs, then the video ...
1
vote
1answer
32 views
Retrieve the value of gl_FragColor
This site(GPGPU programming with OpenGL ES 2.0) talk about how to use opengl es2.0 to do gpgpu
The problem of mine is how to retrieve the value of
gl_FragColor back to the cpu site(host)?
fragment ...
0
votes
1answer
16 views
Incorrect TMX map position after moving from Andengine GLES2 to Anchor Center branch
I'm trying to move from Andengine GLES2 to Anchor Center branch and right now have a problem with positioning of my TMX map.
My map must start in the left upper corner of screen and can scroll from ...
0
votes
0answers
18 views
Android openGL es 2.0 FBO invalid value
I am creating a FBO with the following piece of code.
// generate
glGenFramebuffers(1, fb, 0);
glGenTextures(1, renderTex, 0);
// generate color texture
...
0
votes
1answer
57 views
Why is WebGL render speed so inconsistent?
In my application I plot about 8 million vertices with a single call to WebGL's drawarrays using the LINE_STRIP flag. I don't actually want one long line, I want about 200k short lines, so I cap all ...
-1
votes
1answer
20 views
SIGSEGV when enabling attribute
I am trying to render an object in an android app. The geometry is based on an interleaved vertex buffer (position data and normal data) and an index buffer.
The vertex shader expects those two ...
0
votes
1answer
37 views
Rotation in OpenGL ES 2.0
I have a 2x4 matrix. which represent 4 points of a square. I need to rotate said square by x radians (which obviously can be converted to degrees) with the rotation point/ anchor being the center of ...
1
vote
1answer
12 views
Missing library for glShaderModel in my native C++ Android program
I am not certain what library I need to add for this error:
../arm-linux-androideabi/bin/ld.exe: ./obj/local/armeabi/objs/PhysicsLessons/PhysicsLessons.o: in function
engine_handle_cmd(android_app*, ...
0
votes
2answers
41 views
UV calculation on custom 3d mesh
After making some research, i didn't find yet any formula that will offer me a way to push faceVertexUvs on my custom mesh (basically countries on top of a sphere), I need to burn world texture on ...
0
votes
0answers
17 views
load textures into a thread blocks the mainUI in android
I try to load bitmaps and display them into textures (openglES2.0).
I make a runnable thread, and once loaded the bitmap are sent to textures.
Even my thread is runnable, the main UI Thread freezes ...
0
votes
1answer
26 views
How to get the color of a pixel on the screen for Shader (Open GL ES 2,0)
I use this simple Shader for texture mapping in Open GL ES 2.0
I need to add the code for the Overlay Blending Mode.
The Algorithm I understand everything.
But how to obtain the color of a pixel on ...
0
votes
1answer
17 views
OPENGL ES 2 cube texture
I've got big problems with aplicating texture to cube using OpenGL ES 2 on Android. I want to use same texture for each side of cube. Now I am drawing only two sides, but it is behaving very weird. ...
0
votes
1answer
27 views
Matrix mode for 2D graphics in OpenGL ES 2
As for OpenGL ES 2 I have understood that there no longer are any Matrices (matrix stack) in it. So I have to create my own matrices.
What I want to do is just draw some simple 2D graphics, like a ...
-1
votes
2answers
35 views
Keeping Shader Source Code Hidden
The following StackOverflow response explains several different ways to get source code from a shader after the shader source code has been introduced into the application. While, typically people ...
0
votes
1answer
34 views
OutOfMemoryError issue in Vertex buffer Object (VBO)
I'm facing problem here when moving from VAO to VBO for rendering. I'm using Android platform and using OpenGL API from JNI.
Here is my snippet code
// Initialize in constructor
GLuint buffer[3];
...
0
votes
1answer
23 views
error when creating program and trying to get attribute Location | Opengl ES 2.0 Android
I am trying to draw a textured square on the screen, but whenever I try to use glGetAttribLocation it gives me a runtimeException and glError 1280. I have no clue why when tested on a new end device, ...
0
votes
1answer
25 views
Knowing If a Function is Supported in OpenGL es 2.0
Is http://www.khronos.org/opengles/sdk/docs/man/ the end all be all, or is there another source that tells you exactly which functions are supported by OpenGL ES 2.0?
For example, is glUniformXY() ...
-1
votes
0answers
16 views
How to design model view matrix opengl es 2.0 for handling complete video frame display with aspect ratio [duplicate]
How to design model view matrix opengl es 2.0 for handling complete video frame display with aspect ratio handled when device rotated.
Thank you in advance
1
vote
2answers
131 views
Displaying a screen shot generated UIImage is not displaying in UIImageView (for device only)
I am trying to save an OpenGL buffer (whats currently displayed in the view) to the device's photo library. The code snippet below works fine on the simulator. But for the actual device it is ...
0
votes
1answer
31 views
Webgl GLSL / Open GL ES 2.0
I'm curently porting an engine written for android and IOS devices using OpenGLES 2.0 to webgl and I stumbled uppon a problem using shaders. Most of the shaders written for the mobile app doesn't work ...
2
votes
0answers
44 views
Additive blending artefacts with OpenGL ES 2.0 on some Android devices
I am developing a cross-platform game for Android and iOS. For a couple of billboard-like objects I am using additive blending(glBlend(GL_ONE, GL_ONE)) with black background textures. The rendered ...
0
votes
1answer
14 views
ComputeFrameBufferCompleteness: Can't create render surface
Using cocos2d-x-2.0.4 framework using opengles2.0, the app build based android sdk 2.2 and run on device Galaxy Nexus(Android version 4.1.2), after loading several images(png and jpg), generates this ...
0
votes
1answer
34 views
3D PerspectiveCamera Rendering Depth libgdx OpenGL ES 2.0
I seem to be having a problem getting libgdx to render things correctly. I render 2 colored triangles using the vertices:
Triangle 1(blue):
(-1.0f, 0.0f, -1.0f), (1.0f, 0.0f, -1.0f), (0.0f, 1.0f, ...
0
votes
1answer
15 views
Equivalent OpenGL ES 2.0 Method to void glBindFragDataLocation(GLuint program, GLuint colorNumber, const char * name);
The online documentation at http://www.khronos.org/opengles/sdk/docs/man/ does not give reference to the glBindFragDataLocation(GLuint program, GLuint colorNumber, const char * name); method. What ...
1
vote
2answers
40 views
OpenGL ES 2.0 viewport
I got a problem with OpenGL ES 2.0 and command Viewport(x,y,width,height).
I'm displaying texture(WxH) in UIView using render function
- (void)render
{
glBlendFunc(GL_ONE, ...
0
votes
2answers
24 views
OpenGL - Pass on the output of multiple programs to a new texture
How do I pass on the data drawn to a frame buffer to a new openGL program or texture?
Use case of what I am doing now:
Creating a texture from a UIImage
Passing it on as a uniform sampler2D by ...
0
votes
1answer
35 views
How to flex a 3D texture with OpenGL ES?
I have tried to draw some 3D squares (with OpenGL on iPhone) and make them rotate around, now they look like a sphere.
...
0
votes
0answers
16 views
opengl es 2.0 in snap to edge and snap to middle in android programmmatically
I tried to make snap to edge and snap to middle effect of line like Auto cad.
I used OPENGL ES 2.0 Android Technology to draw this line.
I successfully make effect for snap to edge. But , when i ...
0
votes
0answers
15 views
Using Matrix for video display using openGL es 2.0 on ios [duplicate]
I am using shaders openGL ES 2.0 for video rendering on ios devices. Code is working fine with full screen correctly but I want to use matrices in shaders for handling aspect ratio. Could someone tell ...
0
votes
2answers
47 views
Using GL_UNSIGNED_SHORT_4_4_4_4 for textures
I have a method for loading texture into OpenGL:
bool AndroidGraphicsManager::setTexture(
UINT& id, UCHAR* image, UINT width, UINT height,
bool wrapURepeat, bool wrapVRepeat, bool ...
0
votes
1answer
47 views
+50
iOs OpenGL ES 2.0 adding textures with low opacity on device and on simulator
I have a problem with multiple drawing of textures in my program.
Blending mode is
glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
...
0
votes
1answer
25 views
Are point sprites always perfect circles/squares?
I noticed that regardless of the shape (aspect ratio) of a texture, it will always draw as a perfect square, scaling unequally, when using it as a point sprite. I assume this is because points are, ...
0
votes
0answers
19 views
GLThread throws NullPointerException
Im trying to set my initial game state in my GLSurefaceView.Renderer class, and create my Sprite Object in InitialGameState(Context) and calling it methods in render() but a exception get thrown in ...
-1
votes
0answers
23 views
GLES20 - Calls to glCreateShader, glCreateProgram, glGenBuffers fail on second try [closed]
Argh, this is annoying.
I have written an OpenGL ES 2.0 program for my Android tablet, based off of the examples.
During the initial setup, I call glGenBuffers, glCreateShader, and glCreateProgram ...
1
vote
1answer
28 views
Direct OpenGL ES 2.0 drawing over Cocos2d drawing
I have got a layer. It has got the children with specific 'z' value.
e.g.
Child_1 z==-10.0f (CCSprite)
Child_2 z==-5.0f (My custom node)
Child_3 z==-1.0f (CCSprite)
My custom node (Child_2) has ...
1
vote
1answer
22 views
When using the same Vertex shader in different programs, does the uniform location persist
sorry if this is a duplicate I can't seem to find a solid answer.
If i use the same vertex shader in multiple programs is it safe to assume the getUniformLocation will stay the same?
example, if i ...
0
votes
1answer
42 views
How to color vertices?
How can I set color for vertex in opengl es 2.0?
Now I use color array:
float[] TriangleColors = new float[]{
1.0f, 1.0f, 0.0f,
1.0f, 1.0f, ...
0
votes
0answers
16 views
Adding projection matrix in shaders of (GLCameraRipple example) video capture display on ios device for aspect ratio handling [duplicate]
I looking for adding projection matrix and model view matrix in vertex shader of (GLCameraRipple example) video capture display on ios device for aspect ratio handling. Could you please tell me where ...
0
votes
0answers
16 views
Problems using 2D textures as 3D textures
I'm doing an application for iOS using openGL ES. I have a 3D image stored in a buffer and I need to render it. As 3D textures are not supported, I tried to divide the image into multiple 2D textures ...
0
votes
1answer
52 views
upside-down texture? | OpenGL-ES 2.0 (android)
I tried to map my texture to a square made in opengl es 2.0, and when i do, the texture appears upside down, is my mapping wrong? or the way im drawing it? here is a picture of what it looks like:
...
0
votes
1answer
15 views
opengl es 2.0 specular lighting
this is my very first post here but I'm banging my head against a wall trying to figure out this problem. The code below is my fragment shader for an incredibly simple Opengl es 2.0 app. The vertex ...
3
votes
3answers
144 views
Optimizing performance of a heavy fragment shader
I need help optimizing the following set of shaders:
Vertex:
precision mediump float;
uniform vec2 rubyTextureSize;
attribute vec4 vPosition;
attribute vec2 a_TexCoordinate;
varying vec2 tc;
...
0
votes
0answers
31 views
Perspective Matrix - Calculate distance from camera to get 1:1 world unit:pixel ratio [closed]
I'm currently working in OpenGL ES2 on iOS.
I have a plane that is parallel to the camera.
Using my perspective matrix and viewport size, how do I calculate the distance the plane must be from the ...
0
votes
1answer
27 views
Is it possible to clear drawn particular square from the drafting screen in OpenGL ES 2.0?
I am in the process of developing a drafting tool using OpenGL ES 2.0, I have made arrangement to draw lines & circles using a button click. What I need presently is to indicate the edges of the ...
0
votes
1answer
64 views
iOS OpenGL ES 2.0 Draw 3D Line and Set Color
I can successfully draw lines in OpenGL ES 2.0 on the iPhone with the following code. I am disabling textures and blending but my GLKBaseEffects 'useConstantColor' does not seem to color the line - it ...
1
vote
2answers
25 views
Can i mix normal OpenGL ES 2.0 with Kobol2D / cocos2d on iOS?
I am making a 2D game for iOS using Kobold2D/cocos2D. Now i've decided to try and add some 3d buildings as well (think GTA1/2 everything is 2D except the buildings).
I know how OpenGL works but im ...


