Subset of the OpenGL 3D graphics API designed for embedded devices such as mobile phones.

learn more… | top users | synonyms (1)

-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
95 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
45 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
58 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
48 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
60 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
69 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
141 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 ...
0
votes
0answers
58 views

Error 1 libavcodec.so File format not recognized Android GL Live Wallpaper

I am trying to make a Live Wallpaper for android that plays an .mp4 video located on the device in android-asset (with the example I am using, it actually copies the file to the sdcard at ...
0
votes
1answer
68 views

Objects exported from Blender don't render properly

I recently started learning OpenGL, I wanted to advance from the manually written cube and wanted to use models exported from Blender. The easiest way seemed to be by parsing .obj files so I made a ...
0
votes
0answers
84 views

LibGDX and ObjLoader not displaying .mtl?

I am trying to load .obj files into an Android project with LibGDX. The files have no texture file, but include materials in .mtl files. I'm using the latest official nightly, and rendering the object ...
0
votes
1answer
101 views

OpenGl es 2.0 2D plane rotation

I have been working on getting some quads with textures to display properly using OpenGL es 2.0 on iPhone platform. I started off following the tutorial here ...
0
votes
0answers
67 views

“stack corruption detected” when using glGetProgramiv

I am writing native Android OpenGLES 2 code. When loading shaders (shader loading code is very similar to the NDK sample "hello-gl2"), my program does not link (shaders themselves compile without ...
0
votes
0answers
29 views

android 4.0 opengl application, default dialog lose texture

I have a game using opengl 2.0 on 4.0 system.When i quit the game and go back again, the default dialog will lose its texture, and there will be a black area on the top. The device is samsung tab ...
0
votes
1answer
62 views

Android Opengl ES Maximum number of textures

I am an Android developer and trying to use OpenGL ES 1.0 for the first time to display a large number of square objects with a texture mapped onto them. These textures are taken from large bitmaps, ...
0
votes
0answers
49 views

Draw many vertical lines in OpenGL ES

i have a little problem with my app and opengl es. I want to draw many (so 200) vertical lines with an stroke of 2 pixels and a distance of 5px. My first problem is to draw a line in OpenGL ES, my ...
2
votes
0answers
38 views

Android - which direction does the the y-axis go, top-to-bottom or bottom-to-top, in OpenGL textures, Bitmaps and GLUtils.texSubImage2D?

Can somebody clear up which direction (top-to-bottom or bottom-to-top) the y-axis goes in: Android Canvas & Bitmap, OpenGL texture y-coordinates (0 to 1) relative to a Bitmap uploaded via ...
-1
votes
0answers
37 views

How to draw my own map on iOS? [closed]

I'm developing a indoor map app. I'm current using Quartz 2D to rendering my map on iPhone, but the result is not so good. What should I do? Do I have to use open GL to draw the map? Or are there any ...
0
votes
0answers
61 views

Translating 2d Square OpenGL ES 2.0 | And am i approaching OpenGL ES 2.0 in the right way?

I want to translate a single square ( made out of 2 triangles ) to the right a bit every second, in the future i would like this to happen when a button is pressed, but first i can't really figure it ...
0
votes
0answers
73 views

android OpenGL app crashes on Tegra with large textures

I am working on Android app which draws a 3D scene using large amount of textures. The scene is dynamic in nature and the textures are downloaded from the Internet, so the amount of textures is hard ...
1
vote
0answers
33 views

What is the maximum size of a uniform array that can be passed to a shader in ios?

I am using instanced rendering by passing an array of model view matrices. What is the maximum array size possible for a particular uniform?
0
votes
1answer
25 views

OpenGL depth calculation

I have a square view 100dp X 100dp and I want to do same size square with opengl. My problem is how I control the size of the square ? In opengl we have the vertices of the surface, the z coordinate ...
-1
votes
1answer
30 views

Android:OpenGL : How to have an orthograhic view in a screen using Matrix method

I am in the process of developing an android app similar to Autocad WS. How to have an orthographic projection (of all the 6 views) of an object in a single layout
1
vote
2answers
177 views

Create openGL context in linux console(Raspbian)

I want to make a minimal visual display in console with openGL, but as far as my knowledge goes there has to be a window system involved(glut, glfw, sdl, etc..). I've seen omxplayer build a graphic ...
0
votes
2answers
62 views

Texture is all black

As far as I can tell, my first attempt to draw a texture on a triangle is being setup correctly, but it shows up as all black. I am sending the image to OpenGL as such: GLuint gridTexture; ...
0
votes
2answers
50 views

Getting the color of the back buffer in GLSL

I am trying to extract the color behind my shader fragment. I have searched around and found various examples of people doing this as such: vec2 position = ( gl_FragCoord.xy / u_resolution.xy ); vec4 ...
4
votes
1answer
72 views

Is there a common technique for drawing a “stretchy” line

I'm trying to figure out how to draw an stretchy/elastic line between two points in openGL/Cocos2d on iPhone. Something like this Where the "band" get's thinner as the line gets longer. iOS uses ...
0
votes
1answer
34 views

Cocos2d: Drawing on a UIImageView causes weird line jumps

I am implementing a CCLayer subclass that houses 2 UIImageViews. The views and layer are all the same size: I initialized the UIImageViews with the same frame, and set the contentSize of the layer ...
0
votes
2answers
23 views

How to insert enemy in the same ground level in all phones android

I'm trying to make a game in android, using OpenGlES. It's all working fine except this. I have a galaxy S2 and my brother a galaxy S3. when u run the game in my phone, the enemy steps (Y axis) ...
1
vote
1answer
45 views

Something from GPUImageFilters remains in memory even after deallocation

I'm using GPUImage to do a bunch of image processing both in real time and on static images, I noticed that after churning through ~100 thumbnail images each of which has slightly different image ...
1
vote
0answers
33 views

glColorMask/glDepthMask vs fragment shader

In OpenGL ES 2.0, if writes to the color buffer and depth buffer are disabled with glColorMask/glDepthMask (because I only want to change the stencil buffer), there are no buffers the fragment shader ...
0
votes
3answers
68 views

Implement Blur over parts of view

How can I implement the image below pragmatically - meaning the digits can change at runtime or even be replaced with a movie?
-1
votes
1answer
51 views

OpenGL ES. Texture mapping on a given path

Need to apply a texture on a given path. The path is a set of points. Tell me how to do or where to read about how to do it on Opengl ES?
0
votes
0answers
108 views

OpenGL live wallpaper - onVisibilityChanged

When i run it on my phone, it keeps running in background, even when de screen is off. Any idea why @Override public void onVisibilityChanged(boolean visible) { ...
0
votes
3answers
106 views

GLSurfaceView renderer, how to force surface re-creation?

I have a GLSurfaceView renderer and method onSurfaceCreated is called only once (basically only when activity is created or re-created). I need to test behavior when EGL context is lost and surface ...
1
vote
0answers
78 views

How Cocos2d and other 2d OpenGL Engines draw sprites?

Just for learning purpose I want to build a really simple 2D openGL Engine, so I'm really curious to understand how the most famous Engines work (or at least which is your idea). I know that using a ...
1
vote
1answer
43 views

OpenGLES: How to find Texture Size

I am playing around with some old OpenGL code and I am having some issues with this... glGetTexParameterfv(GL_TEXTURE_2D, 0, GL_TEXTURE_WIDTH, &glW); glGetTexParameterfv(GL_TEXTURE_2D, 0, ...
0
votes
1answer
43 views

Andengine, tiled texture sizes need to be powers of 2?

Plain texture sizes in OpenGL should be powers of 2.. okay. But how to be with Tiled textures. We need to apply power of 2 to whole texture or for a one single tile inside of this image ?
3
votes
1answer
262 views

What is the easiest way to draw line using OpenGL-ES (android)

If I have custom renderer in opengl-es prepared: public void onDrawFrame(GL10 gl) { gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT); // here i want to draw line from [0, 0, 0] ...
1
vote
1answer
166 views

LibGDX Stencil Buffers while using SpriteBatch

This is a continuation of my previous problem and post, seen here. Thanks to the answer I received there I feel I was able to get a little closer to my goal, as well as further my learning of OpenGL, ...
0
votes
0answers
221 views

Android openGL drawing multiple moving objects with sprites

tl;dr: I want to display multiple moving objects with sprites as textures in a fast way. How? I'm fairly new to application developing in android, however I am a bit experienced with openGL. I ...
1
vote
0answers
46 views

Touch response with opengl android

I want to add a touch event in my android program that use openGL. as I'm new in android coding and openGL, I don't know which method should I use. The method showed in android developer page,that ...
1
vote
1answer
57 views

Quaternion object rotation

Since few days I'm trying to implement quaternion rotation for android OpenGL ES. I would like to get function with input quaternion(x,y,z,w). This function will be set rotation for GL10 object. GL10 ...
1
vote
1answer
85 views

Android : OpenGL 2.0 first person camera

So I am trying to learn OpenGL 2.0 on Android, I did play quite a bit with OpenGL 1 on iOS and really enjoyed it. My simple question is about the camera and making a 3D environment where you can move ...
0
votes
1answer
62 views

Split object open in shape of another object in OpenGL ES 2.0

Lets say I have a square 'S'. I need to make a circle 'C' go through it in such a way that the S would split open and C would pass through it. Although I need to give it a 3D effect, 2D would also be ...
0
votes
1answer
68 views

OpenGL ES 2.0 How to Correctly Setup glVertexAttribPointers

I'm trying to render some custom 3D object using the basic XCode OpenGL ES 2.0 template. I've been reading Ray Wenderlich's blog on OpenGL ES 2.0 to try to get started. No matter what I do my simple ...
0
votes
1answer
104 views

OpenGL ES 2.0 | GUI screen on top of game screen?

Ok so I want to make a game with openGL ES 2.0, but I have a problem with the controls. until now i made the controls just like any other sprite in my game, just draw it, and if the camera updates, ...

1 3 4 5 6 7 143