Subset of the OpenGL 3D graphics API designed for embedded devices such as mobile phones.
1
vote
1answer
40 views
Where to use 'GL_EXT_color_buffer_half_float'?
Nowadays, iOS support an extension named 'GL_EXT_color_buffer_half_float', and it can let the half float format accepted by the parameter of glRenderbufferStorage.
But, in iOS, renderbuffer should ...
0
votes
0answers
26 views
Calling SurfaceView and Renderer
I just have a small question about OpenGL ES 1. When you create a SurfaceView with a Renderer, to start the OpenGL process you need to create an intent in your main class right? Like so?
Intent ...
0
votes
0answers
33 views
Texture not animating only showing blue quad
I am trying to move my texture coordinates however I am only getting a blue screen for some reason
here is what my quad looks like
I am not really sure what I am doing wrong
I have tried moving the ...
0
votes
1answer
25 views
Sharing VBOs among Multiple GLKViewControllers?
I load my 3D model files and load their vertex, texture and normal during application launch in a background thread. These models are used by 2 GLKViewControllers. What I want to do is bind the data ...
0
votes
1answer
23 views
Setting the background image of the View for NivevehGL in iOS
I am trying to set the background image of the view( of type NGLView) and it is not working correctly.
The code looks like this:
.h
@interface ViewController : UIViewController ...
0
votes
0answers
36 views
OpenGL ES 2.0 texture not animating
I was wondering if anyone could help me as I cannot seem to get my texture to animate. I am trying to use my bump map to make a wave like effect.
here is my vertex shader
attribute highp vec3 ...
1
vote
1answer
41 views
iOS/Android Going back to OpenGL 1.1 instead of using 2.0
So this question has been asked a few times but the examples I have seen where in 2010,2011
2 years ago I wrote a nice little OpenGL 1.1 3D framework for iOS and I got to understand most of what I ...
0
votes
1answer
29 views
Why is this call to GLKTextureLoader crashing?
This function is in my GLKViewController, called after a EAGLContext has been created and setCurrent and before the view has loaded:
-(GLint)prepareTextureWithImage:(UIImage *)image andName:(NSString ...
-3
votes
0answers
139 views
I need andengine gles2 anchor center branch [closed]
I have andengine-gles2 but I need andengine gles2 anchor center branch. where can I download it? I can not find.
0
votes
0answers
34 views
How to allow user to select image from gallery to set as texture for opengl model LWP?
I have an OpenGL live wallpaper for Android built with the Rajawali framework. I use the following code to reference a texture:
Bitmap texture = ...
0
votes
0answers
41 views
Android OpenGL 2.0 and multiple light sources / Balls of light
So I been following this example http://www.learnopengles.com/android-lesson-six-an-introduction-to-texture-filtering/ which is awesome! I have expanded it so I can move around as a person, and have ...
0
votes
1answer
17 views
the arrt name GL_DEPTH_TEXTURE_MODE in Android sdk
I trying to use the FBO by Android OpenGLES 2.0
I can render to a color texture then render to the screen
now I want to render to a depth texture! but I didnt found the attr name ...
0
votes
0answers
39 views
Using Opengl Vertices(coordinates) as a hot spot
I have drawn a board in opengl, and now want to know that,
How can i translate or map the vertices(coordinates) of the board to
device' pixel so that i can make use of these vertices as a point of
...
1
vote
1answer
51 views
How to show UIButton over GLKView with UIViewController - IOS?
I am new to OpenGL, I have been trying to show a button over the GLKView, but buttons are not showing. Here is what I have done...
context = [[EAGLContext alloc] ...
1
vote
2answers
134 views
iOS OpenGL ES 2.0 Billboard Object On Sphere And Rotate With Sphere
I have a sphere (earth) in OpenGL ES 2.0 for iOS. I also have markers that I want to place at lat/lons on the earth - but I want the markers to always face the user ( billboards ) but also move with ...
0
votes
0answers
22 views
Moving UIImage after OpenGL ES renders
I am trying to render a HUD using UIImageView over my OpenGL ES view. Basically, I am trying to move the HUD around on the screen after the view loads via touchesBegan. However, the problem is that I ...
0
votes
0answers
76 views
Why can't I write out my opengl FBO to an AVAssetWriter?
I've been fighting for a week off and on to save out my opengl renderings (which I'm using for green screening) to video via an AVAssetWriter.
I have created a simple rig below to show what I'm ...
1
vote
1answer
38 views
Tangents on a flat surface [duplicate]
Currently I am trying to do some bump mapping but would like to know how to find the tangents of a flat surface. I have already defined my normals but not sure about tangents, I have drawn a diagram ...
0
votes
1answer
108 views
OpenGL ES 2.0: glUseProgram vs glUniform performance
Which is faster, a single call to glUseProgram, or sending e.g. 6 or so floats via glUniform (batched or separately), and by approximately how much?
0
votes
2answers
53 views
defining normals on an object
I have a quad in which I rotate after within my renderscene method by 90 degrees so the front face of the quad will be facing upwards. I was wondering if I wanted to set normals should I set the ...
0
votes
1answer
39 views
Can't see lights working openGL ES 2.0
I have set up my lighting in my code and in shader but cannot see anything apart from the quad I have at the moment. The lighting doesn't work and I can't really see where I have gone wrong.
I have ...
0
votes
1answer
41 views
How to replicate adding/mixing of HSV values in RGB space
At the moment I'm doing a colourizing effect using additive blending in HSV space. Have a diff value in HSV space which is added to an image texture's individual pixels to get the desired color ...
0
votes
3answers
60 views
Memory overflow when loading large textures
I have a GLSurfaceView and a Renderer which loads textures in onSurfaceCreated. My textures are created like so :
public Texture3D(final GL10 gl, final int id) {
_pBitmap = ...
1
vote
1answer
99 views
No OpenGL context found in the current thread
I am using LibGDX to make a game. I want to simultaneously load/unload assets on the fly as needed. However, waiting for assets to load in the main thread causes lag. In order to remedy this, I've ...
-1
votes
0answers
44 views
skybox won't draw OpenGL ES 2.0
I am using the PowerVR SDK and currently I am trying to draw a skybox around a quad(my quad is made up of 2 triangles) when I try to draw the skybox it doesnt draw at all and half of my quad is gone. ...
0
votes
1answer
38 views
Depth texture as color attachment
I d'like to attach a depth texture as a color attachment to the framebuffer. (I'm on iOS and GL_OES_depth_texture is supported)
So I setup a texture like this:
glGenTextures(1, &TextureName);
...
0
votes
1answer
38 views
OpenGL ES 2.0 - Is it ok to create & link 100 shader programs at once on a typical Android device?
I'd like to try to create and link up to 100 shader programs (probably 40) at once via glCreateProgram and glLinkProgram (and switch between them in onDrawFrame if I need to).
Each one woud have ...
0
votes
1answer
45 views
Automatic buffer clear while using OpenGL on Android
I'm writing a certain OpenGL application where I'd specifically like to draw frames incrementally. For this, I'd like to disable automatic clearing of buffer which I understand, is default behavior of ...
0
votes
1answer
57 views
Is my situation a good case to use GL_STATIC_DRAW?
I have a textured polygon mesh that I plan to be move-able based on the user's various inputs.
For example: the user can move the vertices in various directions. But the number of vertices and the ...
-1
votes
0answers
46 views
How to use different images in OpenGl Android? [closed]
I want to develop an App in Android for Car Models.
I am new to Android.
I want to show different views of a Car in 3D way. For that I have different images of a car.
I am using OpenGl for this.
But ...
1
vote
0answers
29 views
How to use GL_EXT_occlusion_query_boolean extension in iOS
In iOS5, apple have added an extension named 'GL_EXT_occlusion_query_boolean' to help developers to implement occlusion culling.
I try to use it in my code, but I totally do not know how to use it.
...
2
votes
2answers
60 views
How does UIImageView animate so smoothly? (Or: how to get OpenGL to efficiently animate frame by frame textures)
To clarify, I know that a texture atlas improves performance when using multiple distinct images. But I'm interested in how things are done when you are not doing this.
I tried doing some ...
0
votes
1answer
30 views
Unable to display 2 GLKViewController at the same time
I am building an app that is required to show to opengl views, one fullscreen and the other one smaller as an overlay. The two views represent 2 completely different apps.
Right now it seems I can't ...
0
votes
0answers
22 views
Get Current raster position in opengl es 1.1
How we can get Current raster position in opengl es 1.1 like in OpenGl where we do this by calling glGet with argument GL_CURRENT_RASTER_POSITION. Any idea?
1
vote
1answer
48 views
Texture won't load OpenGL ES 2.0 PowerVR SDK
I am currently having problems with my texture loading using the PVR SDK. I know that both of my textures have a linear sample filter. However it fires my message that I have set if a texture load ...
0
votes
1answer
53 views
iPad OpenGL ES extremely slow glResolveMultisampleFramebufferAPPLE()
I am using the OpenGL ES Analyzer. It shows that calls to glResolveMultisampleFramebufferAPPLE() take around 90% of running time. Is this typical, or do I have some inefficiencies in my code? Here's ...
1
vote
1answer
76 views
OpenGL ES 2.0 vbo white screen
I have been trying to get my game engine to work on android and I got stuck at vertex buffer arrays. It works using FloatBuffer, but when I tried to render with VBOs I only got a white screen. So I ...
0
votes
1answer
56 views
Sprite Image Size android
Based on this thread: Android activity image background size
and this thread: Button Image size in android
now I know what image size I need to use in order to save heap memory, but what about my ...
1
vote
1answer
33 views
+1 button with custom button
I've got a game running OpenGL ES, so I'm not using Android's UI components at all (except for surface view). What I would like to do is have a link to Google Plus in my game, which players could ...
-1
votes
1answer
39 views
Inserting a XIB to a pure OpenGL source code?
I am having no luck grasping OpenGL ES (this whole concept of setting up my own rendering pipeline, let alone writing a pixel shader, is mind-boggling).
I'm afraid I have to actually use a tutorial ...
0
votes
1answer
92 views
Using OpenGL ES to do texture mapping on simple polygons?
Intro:
I'm brand new at OpenGL. I first go familiar with texture mapping and basic transformations/translations on OpenGL on my PC.
Now it seems I'm basically re-learning everything as im trying to ...
0
votes
1answer
43 views
How can GLKit draw triangles using both CW or CCW notation?
I have a simple textured quad (composed of 2 triangles) that im rendering in my iPhone app using GLKit.
Now for some reason I am not seeing any difference when defining my vertices with CW notation ...
0
votes
1answer
56 views
Android OpenGL 2.0 : Object Picking (seeing if you hit a object with a ray)
So I am trying to get object picking working in OpenGL 2, in OpenGK 1 I used the glpixelColor which was pretty straight forward.
I have the following code to give me the start and end point of my ...
0
votes
0answers
66 views
Shader program in OpenGLES 2 doesn't link on my device, empty log
I have a shader pair that is being compiled and linked successfully on other devices (Jelly Bean AVD, Nexus 4, SGS 3), but not on my device (HTC Desire).
The loading code is the same as the NDK's ...
2
votes
1answer
21 views
Issue with FloatBuffer corrupting
I am writing a 3D renderer/engine based on the DooM map layout and porting it to Android. My original algorithm was very slow and I improved it using the method ID did for their iPhone port. This is ...
0
votes
0answers
45 views
Android OpenGL ES - most performant way to work around “GL_MAX_TEXTURE_SIZE” if I want more texture available at once?
Will the device always gracefully page in/out between GPU and main memory if I call GLUtils.texImage2d on an image greater than GL_MAX_TEXTURE_SIZE, thereby meaning I don't have to worry about ...
0
votes
0answers
59 views
Displaying modified camera frame on Android TextureView
I've built a program which displays modified camera frame on an ImageView but the FPS is quite low (10-15 FPS on a dual core device). I'm trying to replace ImageView with a TextureView to improve ...
0
votes
1answer
68 views
OpenGLES 2 without shaders
Probably the title of this question sounds a bit off.
I'm trying to follow this tutorial http://ogldev.atspace.co.uk/www/tutorial02/tutorial02.html
it is for OpenGL 3.3 but I suppose that I can ...
0
votes
2answers
137 views
OpenGL ES 2.0 Pinch and Zoom
In OpenGL ES 1.1 on iOS I used to implement pinch and zoom by setting the Field Of View using the following:
// Handles Touches Events
- (IBAction)handlePinchGesture:(UIGestureRecognizer *)sender
{
...
3
votes
2answers
97 views
Placing multiple images on a 3D surface
If I was to place a texture on the surface of a 3D object, for example a cube, I could use the vertices of that cube to describe the placement of this texture.
But what if I want to place multiple ...


