Subset of the OpenGL 3D graphics API designed for embedded devices such as mobile phones.
0
votes
0answers
4 views
OpenGL ES 2.0 - memory management in drawing lines (graphing)
I finally got some functioning code to draw lines (in Xamarin/monotouch)
//init calls
Context = new EAGLContext (EAGLRenderingAPI.OpenGLES2);
DrawableDepthFormat = ...
0
votes
0answers
126 views
Need help setting up AdMob for only one Screen on an Android Open GL game
So I want to put an ad at the bottom of my main menu on my first android game. I'm new to android. I've tried long and hard to find an answer, but all the answers require having an onCreate() method, ...
0
votes
0answers
19 views
How to convert I420 to BGRA in iOS?
I'm trying to read ffmpeg h263 frame, then display it using OpenGLES Texture. AFAIK, h263 works with I420, and OpenGLES Texture only accepts BGRA frame.
So I need to find a way to convert I420 to ...
0
votes
1answer
17 views
GLKit Depth Testing Not Working
I'm using Ray Wenderlich's tutorials to make a simple OpenGlES 2 app using GLKit, and I've come across some problems.
I changed the sample code to display two cubes by adding vertex and indices data ...
0
votes
1answer
14 views
Loading all static buffers to video memory at startup?
I am working on an Android game with openGL ES 2.0, and I have a set of 16 simple, nontextured meshes (15 vertices each) that I am going to draw up to 30 times per frame(on various locations) through ...
1
vote
1answer
340 views
Using OpenGL ES, how can I draw a flat ribbon (quad) in 3D space whose ends are always parallel to the viewing plane?
Ok, I'm sure that title was confusing, but what we're trying to do is actually pretty simple. To explain the calculation, consider a cylinder drawn in 3D space given the two endpoints of its ...
0
votes
2answers
330 views
Adjust sprite bounds of the visible part of texture
Is there any way to adjust the boundaries of the visible part of the sprite? To make it easier to understand: I have a texture, such as shown at figure 1. Then I break it into pieces and fill the ...
0
votes
0answers
12 views
Android OpenGL engine - Rajawali
I have downloaded Rajawali project. In it manifest is defined that it runs on API15 and newer, but when I try to build my project (Rajawali is added as support library) I saw that Rajawali need ...
1
vote
3answers
403 views
How it works: transitions in Park Guides NatGeo iOS app?
Link to iTune Store
I would love to know how they do it for the transition between views when you tap on the Find button at the top right corner. I'm guessing there's some OpenGL ES involved? I'm ...
0
votes
1answer
24 views
libgdx texture from code on mesh of model
I want to render a few 3D models, to be concrete cards (but should have 3 dimensions) with different values on the front-side.
To accomplish this I thought it would be a good idea to create a model ...
-1
votes
1answer
19 views
Accessing constants in LuaJava
I am adapting LuaJava to my Android application and would like scripts to run OpenGL functions. I push the GL context to Lua in a function using pushJavaObject and it works. However I cannot use any ...
0
votes
1answer
300 views
Android OpenGL ES process yuv preview as RGBA
I want to use OpenGL to process the data from camera which format is NV21 on Android platform.
My code was below:
vertex shader:
attribute vec4 position;
attribute vec2 inputTextureCoordinate;
...
0
votes
1answer
58 views
OpenGL ES ray direction vector calculation from touch
I'm working on augmented reality for android and I would like to make some simple raypicking in OpenGL. I have a correctly working calculation of intersection of a line (ray) and sphere (arround point ...
4
votes
0answers
98 views
split the image into a mesh of small quadrangles in OpenGLES
how to split the image into a mesh of small quadrangles in OpenGLES.
I need to split image in small parts and after that stretch only one part of the image, not a whole image.
Is it possible using ...
-3
votes
0answers
28 views
how to make 3d android live wallpapers using openGL es? [closed]
i've been told you can make 3d android live wallpapers using openGL es. However i looked this up and is seems opengl is just like a collection of things and doesnt appear to be an actual engine for 3d ...
-1
votes
0answers
32 views
5k triangles opengl es performance on android (libgdx) [closed]
I have created mesh with libgdx library holding 5k triangles. I am curious, why performance is so poor. It gives about 20 fps on my HTC One S. It is just 5k triangles stacked on one position rendered ...
0
votes
2answers
48 views
glReadPixles speed with RGBA size in setEGLConfigChooser
I'm running MediaDump project, which trying to dump every video frame into single image files using GLSurfaceView. But I found that the RGBA sizes setting in the setEGLConfigChooser playing an ...
0
votes
0answers
10 views
Quaternion rotate about axis after touches ended
In OpenGL ES 2.0 using Apple's GLKit, I'd like to have my object rotate after touches end using Quaternion SLERP. I thought I could do this using the last quaternion known after touches ended and ...
0
votes
2answers
36 views
How to assemble animation from an array of images with the highest FPS possible on iOS?
I apologize in advance if this question sounds dumb.
I have an array of images produced by another project, and I want to show them on the screen in sequence as fast as possible to assemble them to ...
0
votes
1answer
82 views
Android OpenGL ES 1 - Polygon Edge
I am drawing a an arrow in using opengl es 1.0. I drew the arrow using a rectangle as the shaft and a pyramid as the tip. When the arrow is rotating from certain angles the shaft can be seen through ...
7
votes
3answers
3k views
iOS: Video as GL texture with alpha transparency
I'm trying to figure out the best approach to display a video on a GL texture while preserving the transparency of the alpha channel.
Information about video as GL texture is here: Is it possible ...
1
vote
2answers
523 views
Suitability of using Core Animation on iOS vs using Cocos2D and OpenGL ES?
I finished a breakout game tutorial in a book, but the ball, which is a 20x20 pixel image, was skipping frames and not moving very smoothly. That is the case on the Simulator as well as on an iPhone ...
0
votes
2answers
791 views
Android OpenGL texture / object detection
I'm trying to perform OpenGL picking (i.e. answer the "on which object
did the user click?" question).
I googled it and found a few different techniques, but none is ok for
me
checking the pixel ...
0
votes
0answers
31 views
Collada to SceneKit to iOS
I have a collada file, it contains a cube, from this I export the data to a file (just raw bytes), and I import the bytes into iOS. All good, I examined the data and all looks the same for vertices ...
2
votes
2answers
579 views
How to set Background image in GLKViewController iPhone OpenGLES?
I'm drawing a line using OpenGL on the iPhone. I used GLView and GLKView delegates to draw the line. But now I want to set a background image to GLKViewController, and on the background image, I want ...
0
votes
0answers
18 views
GLSurfaceView device orientation change, black screen
Im porting an iOS game to Android.
Im using as template the GL2JNI example from the latest NDK, and have added inside GL2JNIActivity.java/onCreate mView.setPreserveEGLContextOnPause( true ); to ...
0
votes
0answers
24 views
VAO vs manual setting of attribute pointers
I have read that binding a VAO is a fairly expensive operation. But so is the binding of vertex buffers and other tasks that are typically set up inside a VAO. On iOS devices, is there a particular ...
0
votes
0answers
22 views
Drawing a background image in IOS with OpenGL has poor quality
When using open gl to draw background images, you typically have to use a texture and draw a quad. When ever I've done that, I dont get a pixel perfect representation of my image. Things like fine ...
1
vote
3answers
50 views
How can I get Alpha blending transparency working in OpenGL ES 2.0?
I'm in the midst of porting some code from OpenGL ES 1.x to OpenGL ES 2.0, and I'm struggling to get transparency working as it did before; all my triangles are being rendered fully opaque.
My OpenGL ...
0
votes
3answers
49 views
Best way to use a large image (8000x5000 at 20mb) in android using opengl-es
I am been doing some research lately and haven't come by a good answer, what I want to do is display a very large image 8000x5000 at 20mb in my application as a background (it is a minigame) the ...
0
votes
1answer
40 views
Using opengl es shader to convert YUV to RGB
I want to convert yuv to rgb in opengl es shader with just one sampler which contains yuv data. My code is below:
1) I send yuv data to texture:
GLES20.glTexImage2D(GLES20.GL_TEXTURE_2D, 0, ...
0
votes
0answers
32 views
How to change the zorder of OpenGL Surface View dynamically in android?
I have two draggable GL Surface views with videos running on it. And I am able to drag the first video over second one. But when I was trying to drag the second video over first one,I was able to ...
2
votes
1answer
192 views
OpenGL error 0x0500 in -[CCTextureAtlas drawNumberOfQuads:fromIndex:] 556
I am following BOX2D tutorial from Learn COCOS2D book and I started to see this error like 10 times every second on console. I googled this error but couldn't find any relevant information. Some ...
-2
votes
1answer
35 views
Reflection floor on openGl ES 2.0
How can I make reflection floor in OpenGl ES 2.0 in which I'll see reflections of objects: spheres, cubes, etc. Everything that I saw was OpenGL samples for desktop.
0
votes
1answer
21 views
Android OpenGL ES Overlaying backgrounds
I am currently trying to have a particle fountain spurt out random particles overlaying ontop of a volcano background (textured quad).
I have the volcano backgound and the particles draw statement ...
0
votes
1answer
29 views
GL_INVALID_VALUE in glUseProgram on resuming app
I am getting GL_INVALID_VALUE​, 0x0501 error at glUseProgram(mYUVProgram); in the following code. It occurs on resuming the app. According to glUseProgram docs
GL_INVALID_VALUE is generated if
...
0
votes
1answer
18 views
OpenGL ES and Thread Structure
I have the following (simplified) rig so far:
MyActivity.java:
public class MyActivity extends Activity {
public GLSurfaceView myGLView;
@Override
protected void onCreate(Bundle ...
0
votes
1answer
26 views
How to set the opacity of an image using OpenGL ES 2.0 and GLKit?
I am new to iOS and OpenGL programming, and I am currently writing a simple program using OpenGL ES 2.0 and GLKit for practicing. Right now I can successfully load a PNG file and display it on the ...
17
votes
6answers
993 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 ...
0
votes
1answer
49 views
State preserving particle system for OpenGL ES 2.0
I'm trying to implement a state preserving particle system on the iPhone using OpenGL ES 2.0. By state-preserving, I mean that each particle is integrated forward in time, having a unique velocity and ...
1
vote
1answer
33 views
GPU wait on texture
I'm using shaders for processing and rendering video frames. So I need to update texture before each draw call. Everything works ok, but when I ran OpenGL profiler among others it showed me this ...
1
vote
1answer
27 views
Dynamically change color on Android using openGL?
How gradually change the color of the some shape with the time on Android using openGl?
For example, I want dynamically change the color of the triangle.
0
votes
0answers
19 views
Cocos2d - Trouble with blending between particles and a sprite draw
I've a CCSprite subclassed object for which I have a draw function :
- (void)draw
{
CGPoint arrVerts[] = { ccp(0.0, 0.0), ccp(0.0, 100.0), ccp(100.0, 100.0), ccp(100.0, 0.0) };
...
1
vote
1answer
34 views
What is the purpose of the macro : GL_UNPACK_ROW_LENGTH
I am trying to port an OpenGL application from Mac to iOS. The code is like this
glPixelStorei(GL_UNPACK_ROW_LENGTH, 4*COMPASS_SIZE);
glPixelStorei(GL_UNPACK_SKIP_ROWS, row*COMPASS_SIZE);
...
0
votes
0answers
25 views
android ANativeWindow_lock api doesn't work for GLSurfaceView
I'm finding methods to get drawing buffers very quickly from Android GLSurfaceView.
eventhough I know glreadpixel can do this job, glreadpixel is too slow to get drawing buffer.
I want to read ...
0
votes
2answers
96 views
Copy A Texture to PixelBuffer (CVPixelBufferRef)
I am using an API which only gives me the integer id of the texture object, and I need to pass that texture's data to AVAssetWriter to create the video.
I know how to create CVOpenGLESTexture object ...
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 ...
1
vote
0answers
21 views
I would like annotations to cleanly fall into the center of the shape drawn. Unknown cause of annotation offset
All,
I've recently followed this tutorial on drawing smooth line's using cocos2d. http://www.merowing.info/2012/04/drawing-smooth-lines-with-cocos2d-ios-inspired-by-paper/
It's a great tutorial. I ...
1
vote
0answers
51 views
OpenGL rendering randomly changes?
Sorry for the specific problem, but I can't find any explanations for my problem. I'm almost certain it's a stupid mistake I'm overlooking.
I just want to draw a basic multicolor rectangle to the ...
0
votes
1answer
35 views
Concurrency with android GLES glBufferData
I'm trying to use Android and OpenGL 2.0 to create a sort-of desert racing game. At least that's the end goal. For the time being I'm really just working with generating an endless desert, through the ...



