4
votes
1answer
15 views

Android OpenGL ES Map Globe Like WhirlyGlobe in iOS

I need to make a Globe Map in android like this, i tried to search alot but found no helping results it's somewhat similar to this question, can any one help me out How should i implement it in ...
1
vote
1answer
30 views

Android OpenGLES Loading textures in GLThread then telling UI Thread to run a method

I am working on an application that uses OpenGL ES and I am trying to load textures in to memory before I start the application logic. I have tried a few solutions and have had no success. My ...
-1
votes
1answer
21 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
0answers
19 views

glReadPixels fails when hidden a element

When i touch the screen glReadpixels return the RGB of the pixel. After the touch i call a method to hidden element that has the same RGB values. After this if i touch the screen glReadpixels returns ...
0
votes
0answers
14 views

adding loadTexture to android app

i want to use a texture in my android app. i've written all classes and methods already. the app works without loading the textures on the cube (the cube just being white then). when i call the ...
0
votes
0answers
38 views

how to add touchevent in an android app?

I want to turn the cube by using a touchevent. how do I add this here? I know I need a new class extending the old one, but where do I put the Motionevent? public class GlRenderer implements ...
-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 ...
0
votes
1answer
47 views

different textures in android

i want to make more than one texture on a cube as easy as possible. there should be a different texture (picture like the one loaded in the loadtexture method, android.png) on each side of the cube. ...
0
votes
0answers
16 views

add PLHotspot at desired coordinates using PanoramaGL in Andoid

I'm using panoramagl to view panoramics images in my android application, But I wanna add some hotspots on the view to interact with other panoramic images, I'm trying to insert the hotspot in the ...
1
vote
1answer
22 views

ShapeRenderer Transformations Interfering with Mesh Transformations in LibGDX

I'm working on a game with a lot of rotational transformations and I'm running into a problem with something that seems pretty simple - I assume I'm doing something wrong. I draw a triangle with a ...
0
votes
0answers
26 views

how can i use dynamic camera? (OPENGL ES)

My code: public void onDrawFrame(GL10 gl) gl.glMatrixMode(GL10.GL_MODELVIEW); gl.glLoadIdentity(); GLU.gluLookAt(gl, eyeX, eyeY, eyeZ, centerX, centerY, centerZ, upX, upY, upZ); ... ...
0
votes
3answers
27 views

drawing textures in opengl es 2.0

I have been having a problem with drawing texture in opengl es 2 on android for about 3 days and finally decided i should help after all my researching lead to dead ends. The problem is the texture is ...
0
votes
0answers
26 views

How to call canvas/bitmap in renderer Android Rajawali?

How would I call a canvas converted to bitmap within an opengl scene? Here is my bitmap class: public final class TextBitmap extends Plane { public TextBitmap(Context paramContext, float[] ...
0
votes
1answer
32 views

Create a custom map in android

I need to create a simple map application for android. It's something along the lines of this one I made in HTML5 some time ago called CanvaMap. I need to replicate it's features for Android. It can ...
0
votes
1answer
40 views

center of rotation of multiple objects opengl

I am having problem rotating a cube along its own axis and not some arbitrary position. The cube is a collection of other 27 cubes and I have succesfully managed to rotate the group of cubes but not ...
0
votes
1answer
32 views

Android App strange behaviour when comeing back from sleep

since i am stuck on this problem and don't know where my mistake is I need to ask you guys. When I first launch my app everything works fine, but when i press the "back" button on my phone to get back ...
0
votes
0answers
32 views

OPENGL ES 2.0 texture in circle

trying to load a texture into a circle, but I have big troubles with it. This is the original texture: original texture Here's the code: private void circle(){ int segments = 20; vertices = ...
-1
votes
0answers
29 views

How to calculate 3d object coordinates into 2d screen coordinates OpenGL 2.0 [duplicate]

I'd given several frustrating trials on creating a Touch Event with a specific 3d object in OpenGL, thus meaning: I want to touch one of several Squares and want something specific to happen if I ...
0
votes
0answers
47 views

Drawing Shapes in OpenGL ES 1.0

I'm trying to draw shapes in opengl es 1.0 for Java android. I have no idea how to do it and there are so many tutorials for so many different versions of opengl on the web it's making my head spin. I ...
0
votes
0answers
37 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 = ...
-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
1answer
78 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 ...
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
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
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
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 ?
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
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
97 views

Android overlaying GLSurfaceView with camera's SurfaceView

I'm looking to put an openGL model (via GLSurfaceView) on top of the camera, which has its own SurfaceView. Surely this must be possible, apps like Layar do this. Here is what I am trying: public ...
0
votes
0answers
55 views

Do I need to learn Canvas to learn OpenGL ES in Android Game Development?

I'm currently following a book named Beginning Android Games by Zechner and Green and I was wondering if I could skip the part that teaches Canvas and go directly to OpenGL ES ? Is this ok or I'm ...
2
votes
1answer
60 views

Android OpenGL colors of texture degradation

I am using OpenGL for 2D graphics, loading texture from 32-bit PNG image and when texture is drawn on the screen, colors look weird. It looks like colors are not totally accurate, something like less ...
1
vote
1answer
106 views

Android OpenGLES2.0 - Solid Black Textures When Rendered

I've been making an Android OpenGLES2.0 2D game engine for the past week or so, and after a few bumps in the road, I've largely been successful. I've got the ModelMatrix, ProjectionMatrix, ViewMatrix, ...
1
vote
1answer
55 views

Android tutorials for OpenGL with API level 10

I am currently trying to learn how to use OpenGLes in Android, but all of the tutorials I have found do not use API level 10. (i.e. Gingerbread/2.3) EDIT: Well, at least they say they use it, but ...
-2
votes
1answer
65 views

Cannot understand why program crashes when it reaches this part in the code

Seems to crash whenever it reaches "startBtn" I am currently using Java in Eclipse with the Android SDK and would really appreciate your help Below is the code for the MainMenu Class: package ...
4
votes
1answer
55 views

Switching from OpenGL ES 1.0 to 2.0

I have been developing an Android app using OpenGL 1.0 for quite some time using a naive approach to rendering, basically making a call to glColor4f(...) and glDrawArrays(...) with FloatBuffers each ...
1
vote
1answer
43 views

Using ByteBuffer as a Texture in OpenGL

Iḿ working on an application that should stream video data into OpenGL (ES2). For each frame of my video, I can get a ByteBuffer that contain all the data. I guess one way to go would be to convert ...
-1
votes
2answers
161 views

OpenGL : .obj file to Android openGL [closed]

I have a .obj file (a 3D model), but I have no idea on how to load it into Android openGL...is there anyone has proper tutorials step by step?
0
votes
0answers
60 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 ...
0
votes
1answer
42 views

Translating All Objects Before Drawing?

So I'm new to programming alongside the GPU and very new to LibGDX as well. I'm slowly making my way, but I'm having an issue figuring out how to modify where objects are drawn. Right now, I have a ...
0
votes
3answers
170 views

Finding the right context to take a screenshot with glReadPixels()

I'm trying to read directly from the frame buffer via glReadPixels() so that I can take a screenshot from whatever is on my screen. I'm not using a GUI, instead it should print the raw content of the ...
1
vote
1answer
342 views

Android OpenGL ES 2.0: Cube model is not only distorted (perspective is wrong?), but also the faces are loaded incorrectly (vertices not correct?)

I have come across some problems I'm not able to explain very well without you guys trying it out. I'm unable to get a cube to load correctly. I was able to make it rotate nicely on all axes, though. ...
0
votes
0answers
79 views

Framerate stutters ocasionally on android opengl es 2.0

recently I started developing some simple opengl es 2.0 android application and i've got problem with animation speed. Average fps is constantly equal to 60 (measured every 100 frames) but sometimes ...
1
vote
1answer
43 views

Is Triangle_Strip supposed to wrap?

I'm facing a problem i worked around some time ago (Incorrect VBO for mesh: some triangles are connected and shouldn't [2D]), and since my shader have become more complex and different problems ...
0
votes
0answers
110 views

Creating an Input Method in Android using libGDX?

I'm part of a group in college working on our senior design project. Our project involves using EEG and flashing patterns to control an Android device without touching it, merely by looking at ...
1
vote
1answer
210 views

Cannot load progressive jpeg images in libgdx

Here's my source package com.effect.bio; import com.badlogic.gdx.ApplicationListener; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Input; import com.badlogic.gdx.graphics.GL10; import ...
1
vote
2answers
179 views

LibGDX Tablelayout Menu does not show

I'm writing a new program in LibGDX handling Backgroundtextures and have just begun to implement the screens. But when I test it, it just shows me a black cleared screen with the given resolution. I ...
0
votes
1answer
45 views

Android/OpenGLES: Pulling x and y coords through my class hierarchy?

So I'm working on an Android game using OpenGL; it's roughly similar to Breakout. Up until now, I've gotten away with updating the game on every draw frame as the user changes her input. Now, though, ...
4
votes
1answer
132 views

Converting An Image To A Buffer In Java

I am trying to implement some simple 3D functionality into a game I am currently developing. I am utilizing the LibGDX Game Engine to accomplish this goal, as it seemed to integrate nicely with ...
0
votes
0answers
101 views

android GLES20 glBufferData IllegalArgumentException: remaining() < size [closed]

I want to use yuv display a picture, because my project is to transmit the h264 yuv data. enter code herefloat[] mvertices = {1f, -1f, 0f,1f, 1f,1f, 1f, 0f,1f, 0f,-1f, 1f, 0f, 0f, 0,-1f, -1f, 0f, 0f, ...
-1
votes
1answer
106 views

Rotation in OpenGl ES to place objects then rotate the world

I am developing an augmented reality application for android and trying to use openGl to place cubes at locations in the world. My current method can be seen in the code below: for(Marker ma: ...

1 2 3 4 5 9