0
votes
3answers
18 views

is calling libgdx SpriteBatch begin and end method multiple times expensive?

Are the libgdx SpriteBatch begin and end methods expensive for the processor or make the performance slow if I call them multiple times? For example: public void render(float delta) { GL10 gl = ...
-2
votes
0answers
9 views

cocos2dx screen becomes black after first frame

I'm using cocos2dx to port a game from the iPhone to Android. When I first open the game I can see the first frame being drawn and after that the game goes completely blank. I'm using openGL to draw ...
-2
votes
0answers
22 views

Blur the image on real-time where user touches

I want to blur the portion of the image where user touches on real-time in Android. The native canvas approach is not suitable in this case i guess, as the blur result I want is real-time & based ...
1
vote
1answer
31 views

Video Concatenation or Merging

I need to join/merge/concatenate more than two different video files (Eg :3gp, mp4 ) in android platform and need to store them as mp4 file. So far from my analysis, I’ve seen people referring FFMPEG ...
-1
votes
0answers
21 views

Add text on cube face OpenGL 3D Android

Here is my class Cube where I define the colors and shapes, and I would like to add text on different faces of the cube : public class Cube { private FloatBuffer vertexBuffer; // Buffer for ...
1
vote
1answer
33 views

Why my opengl output differs for various devices?

I have created an android app for drawing of lines,circles.. by using GLSurfaceView in OpenGLES 2.0 like an Auto cad app. The app works well with Google Nexus 7, in the sense that if we draw a line ...
0
votes
1answer
15 views

length() in GLSL bug on Samsung Galaxy S3

I made a shader in GLSL for an android game. In this shader I have to compute the length between the current pixel and the center of the FX This shader contain these lines : //compute distance ...
-1
votes
0answers
17 views

how to display panorama on andorid

I got a spherical panorama with 713 * 300 pixels and a cylindrical one with 5026 * 803 pixels. I got these panorama from web. I use panoramgl to display them. When display the spherical one, it can ...
0
votes
0answers
14 views

CyanogenMod and OpenGL ES texture loading

My friend tested my application on a Motorola Defy (with CyanogenMod v4.x, I don't remember exact version number, and she is not reachable now). My app uses OpenGL ES (v1.1, and in another activity, ...
-1
votes
1answer
18 views

OpenGL 3D Cube Rotation

So i have a 3D cube that and I have a matrix 3x3 that i transform to obtain an angle and an axis to use these as parameters in gl.glRotatef(angle, x, y, z); However, the cube does not rotate ...
0
votes
2answers
36 views

Android OpenGL 3x3 Matrix to Quaternion

I want to rotate a 3D cube using a 3x3 matrix. I manage to get the matrix but OpenGL needs a quaternion to rotate the cube using glRotatef (float angle, float x, float y, float z); How can I go ...
1
vote
1answer
22 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 ...
0
votes
0answers
17 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 ...
0
votes
1answer
31 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 ...
-3
votes
0answers
32 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
36 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
57 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
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
3answers
52 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 ...
-1
votes
1answer
20 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
0answers
33 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 ...
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
32 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 ...
1
vote
0answers
54 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
0answers
15 views

OpenGL ES 1.0 glLoadIdentity android

In Android.mk: LOCAL_LDLIBS += -lGLESv1_CM and in header: #include "GLES/gl.h" but when i using glLoadIdentity my program is crashes (Fatal signal 11 (SIGSEGV)) I think glLoadIdentity have not ...
0
votes
1answer
42 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 ...
0
votes
0answers
18 views

mapview inside a viewpager: drawing cache and opengl to smooth the experience

I am using MapView from the new V2 API inside a ViewPager with a custom pagetransformer that does all kinds of fancies to the views inside :) But as MapView uses an OpenGL layer, most of the ...
0
votes
0answers
17 views

EAGLSharegroup like functionality for cross platform developement in c++ openGL

I am trying to use a c++ port of the GPUImage library in a cross-platform cocos2d-x game. Both GPUImage and cocos2d-x create their own OpenGL context to perform operations on the GPU, and this causes ...
1
vote
1answer
98 views

Android 3D Java Open source game engine that supports OpenGL ES 3.0

We are developing a 3D tool in Java on Android, and it is required that the tool uses OpenGL ES 3.0 because it's for an application for next gen devices. We would like to know if there is indeed a ...
1
vote
0answers
77 views
+50

Crop camera preview for TextureView

I have a TextureView with a fixed width and height and I want to show a camera preview inside of it. I need to crop the camera preview so that it doesn't look stretched inside my TextureView. How to ...
0
votes
2answers
24 views

Android: attempting to start OpenGL activity, app crashes [closed]

I'm a newbie to Android development. Please bear with me if this question is trivial. I have a main activity which contains a button: <Button android:id="@+id/single_player" ...
0
votes
1answer
44 views

Full native android app doesn't generate .apk in eclipse

I'm creating a full native app based off this example from the android dev site. My project compiles successfully however, after compiling I receive the error "Could not find app_name.apk!" and "Null ...
0
votes
0answers
15 views

Surfaceview port to GLSurfaceView

In my app I've a SurfaceView where it will be displayed Camera content (camera.open). That SurfaceView has a PreviewCallback which overrides: @Override public void onPreviewFrame(byte[] data, Camera ...
-1
votes
1answer
40 views

How can i make .put(float f ) take a Float[ ]? [closed]

elcipes is telling me that my vertBuff.put(vertices); --- This method .put(float f) in The Type FloatBuffer is not applicable for the arguments (Float[]). How do i fix this error? heres the code that ...
0
votes
1answer
37 views

How do i put ana arraylist into an array in another class?

Im trying to put array list (linep) and (indexP) into arrays (vertices) and (pIndex)and the i need to render the line in opengl ....most likly a call to the on drawframe()? Im not sure how to do this ...
0
votes
0answers
29 views

Fast Android graphics library for basic drawings

I'm looking for library that will draw colored arcs in screen as View just like android onDraw yet faster. LibGDX is not a solution because it is a bit overcompicated, so I'm looking for easier ...
-3
votes
0answers
27 views

Android Game development Strater? [closed]

Can any one help me with resources for game development in android If any body have books, websites, forums for start up for game development It will be great if someone give me resources about OpenGL ...
0
votes
1answer
61 views

Is there a way to share a texture between two contexts / threads using OpenGL on Android?

I want to have two threads. One thread writes into a texture using an FBO and the other uses it to render to the screen. This can be done on windows etc, but how do I do it on Android? I am using GL ...
-2
votes
0answers
12 views

Android nyArToolKit 3dmodel fix position

I have been using the Android version of NyARToolkit, im having problem to spawn 3dmodel in fix position without tracker. example i want to show 3dmodel at position x = 0,y= 0,z =0 when i'm open the ...
1
vote
0answers
25 views

Using a UI to Draw in openGLes for Android?

I've been doing tons of research on this topic for quite some time now and i think i just need to clear some of it up.Ok i want to make a OpenGL program for android that uses the users interface to ...
1
vote
1answer
25 views

Best practice for passing messages from GLSurfaceView to MainActivity in Android?

I'm doing some OpenGL ES 2.0 coding with Android on a Samsung Galaxy Nexus. I've implemented the MyRenderer class according to the Android OpenGL tutorials, but I'd like to be able to get some debug ...
1
vote
0answers
58 views

Android OpenGl giving 100% transperent bitmap on response

i am trying to give different effect to image like posterized,saturate etc.. i have tried to run source code HelloEffects given at android api level 14 source code.i am getting different effect by ...
0
votes
1answer
45 views

Android devices GL_MAX_TEXTURE_SIZE limitation, safe texture size

I am working with AndEngine and OpenGL ES 2.0. I keep reading about GL_MAX_TEXTURE_SIZE and how I should keep my texures under 1024x1024. I started wrong before and while using tilesets in TMX ...
0
votes
0answers
36 views

changing a model's clothes at runtime

i am trying to make an application/a game in which i display a model of a person with clothes. What i am trying to achieve is that i can exchange the clothes that the person is wearing by switching ...
-1
votes
0answers
28 views

Android - OpenGL ES 2.0 Is it possible to do panning option in SurfaceView [closed]

I have used SurfaceView in a layout. The default units of the Surface View are, centre is 0,0 & the right top corner is 1,1 & the left corner is -1,-1. I use the SurfaceView to draw ...
0
votes
1answer
36 views

Contour plotting opengl(Android)

I am using OpenGL ES 2.0 (on Android) to draw simple 3D Contour lines. I have longitude, latitude and elevation values. I would like to draw contours in 3d view in android. Can you provide some ...
0
votes
0answers
18 views

how to add 3d models dynamically in glsurface view renderer in android

In my Augmented reality application I need to render 3D model over a marker. with predefined/ initialized 3d model i can show teapot over a marker detecion. but now I want to replace it with another ...
0
votes
1answer
29 views

What is the app-win32.c file in Android NDK San Angeles sample for?

I'm exploring OpenGL ES on Android for the first time, particularly the San Angeles sample provided by the NDK. One file that caught my attention was app-win32.c. It contained what seemed to be codes ...
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 ...
1
vote
0answers
174 views

GoogleMaps says OpenGL version is < 2 for Emulator with GPU support

I am using an Android 4.2.2 emulator with the "use host GPU" option enabled. I am trying to get the Google Maps API to work in an application, but I keep getting this error message in my Log Cat: ...

1 2 3 4 5 58