0
votes
0answers
31 views

What is the best way to load files from an expansion file in the NDK

I wrote a native android app which use openGL ES and APK expansion file because it's greater than 50MB. All my textures are in the .obb file and I load this in java (with APKExpansionSupport). Here ...
0
votes
0answers
73 views

Android OpenGL Surface crashing on device orientation change

I'm having issues in my OpenGL app for Android. I have a GLSurfaceView that in turn calls some native NDK code that draws with OpenGL. The same code is working great on iOS, but on Android, when I ...
1
vote
0answers
27 views

Correct point to release OpenGLES Resources Android NDK

At what stage in the NDK App event lifecycle should i be releasing all my OpenGLES resources? This includes OpenGLES VBO's and Textures mainly. DETAILS: Im releasing in either the APP_CMD_PAUSE ...
0
votes
0answers
64 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 ...
0
votes
0answers
56 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
0answers
66 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 ...
1
vote
0answers
67 views

Is the OES_framebuffer_object extension broken on Tegra based devices?

We port some OpenGL ES 1.x code which use FBO extension (GL_OES_framebuffer_object) to Android and got the problems with Tegra based devices (Tegra 2, Tegra 3). The problem is that while devices ...
0
votes
0answers
63 views

Android emulator GPU on for NDK apps

I have noticed that applications created with the Android SDK are fine using OpenGL ES commands inside an avd with GPU acceleration on, on the other hand applications created with the NDK to work with ...
0
votes
1answer
124 views

OpenGL texture ID generated more than once

I have texture loading routine in C that calls Java part of my game to do the job. It can load .png as well as .jpg files and create textures from them. It returns back to C the generated textureID ...
0
votes
0answers
189 views

How to render into Surface using OpenGL ES, without GLSurfaceRenderer

I need to draw a decoded video frame into an android.view.Surface object, in Android native C++ code. I understand that the common way to do this is to implement GLSurfaceView.Renderer interface and ...
0
votes
1answer
231 views

Why will my android native activity sometimes display a bad image when rendering a bitmap?

I'm trying to use NDK to display a bitmap on a full screen. The requirement force me to develop with completely native code. I use Skia to draw a SkBitmap, then display it by Opengl APIs. When my ...
0
votes
1answer
261 views

Android-NDK: create GUI elements out of native code

as far as I understood the Android-NDK-thingy it works as follows: I have to use a NativeActivity that itself calls into the attached native code handing over some OpenGL graphics context. This ...
2
votes
1answer
149 views

GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES - Nexus 7

I'm having problem with OpenGL ES 1.0 rendering engine on my Nexus 7 - I'm trying to create frame buffer but it always return GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES, the code is as shown below: ...
1
vote
1answer
276 views

undefined reference glBindVertexArrayOES,glGenVertexArraysOES,glDeleteVertexArraysOES in eclipse

Trying to compile C++ code with Android NDK but these errors wont go away undefined reference to glBindVertexArrayOES undefined reference to glGenVertexArraysOES undefined reference to ...
0
votes
0answers
84 views

android ndk opengles part of the screen is black

I am getting a very weird error. In the project, I transform a 2D object to 3D format by pressing a button. Mostly it runs successfully, but sometimes it shows incorrectly,the screen is divided ...
0
votes
0answers
70 views

'glDrawTexfOES' could not be resolved

I have one last problem that prevents me to succsessfully build sample project. glDrawTexfOES(mLocation->mPosX - (mWidth / 2), mLocation->mPosY - (mHeight / 2), ...
1
vote
1answer
264 views

android native app opengl es white textures

I'm writing a native app that should only display a little triangle with a texture. But unfortunately, it everytime only displays a white triangle. My code is very simple. First to load a tga Image: ...
0
votes
0answers
242 views

Bad render of OpenGL ES texture from OpenCV Mat in Android NDK

I'm working with OpenGL ES 1 and OpenCV4Android 2.4.3 to grab camera frames in Java and then display them as an OpenGL texture in native code. Right now I'm trying to create a 512x512 and paste it to ...
1
vote
1answer
416 views

White textures with SDL 1.3 and OpenGL ES 1.1

I'm trying to port a game that uses SDL 1.2 and OpenGL 1.3 to Android and eventually iOS. For that I had to switch to SDL 1.3, the unreleased next version that's going to become SDL 2.0, which has ...
3
votes
1answer
170 views

glext.h function unresolved

I'm creating a native android project using eclipse. It uses opengl es 1.1. I'm having a problem using functions defined in "glext.h". I'm able to use macros defined in "glext.h", but when I try to ...
0
votes
1answer
270 views

Function 'glDrawTexfOES' could not be resolved

I'm creating a native android project using eclipse. I'm using opengl es 1.1. I get this error when using a function from the glext.h file Function 'glDrawTexfOES' could not be resolved I'm using ...
0
votes
0answers
156 views

'glDrawTexfOES' was not declared in this scope

I'm using eclipse, and i'm working on an entirely native android project, following along with a book. I'm using only opengl es 1.1. I've looked for ever, but none of the other "not declared in this ...
0
votes
0answers
110 views

OpenGL Math Library GLM: Weird build error when built for Android (GCC - Gygwin)

I am trying to use glm as math library for my OpenGL based engine. The following code snippet works perfectly file when compiled with MSVC but throws weird compilation errors, glm::mat4 m1(1.0f); ...
2
votes
1answer
207 views

OpenGL line segment rasterisation on Android

Let pa be a point at (0.5, y) and pb at (5.5, y). If we draw a line segment from pa to pb we get a 5 pixel segment on x axis. The question is where exactly these pixels are? According to the OpenGL ...
1
vote
0answers
131 views

Init OpenGL on android platform from native code

I want to initialize OpenGL ES on Android platform from native code. I just want to draw on some part of activity, for example, on panel or smth like this. In Windows platform I use HWND handler to ...
1
vote
0answers
230 views

Android NDK OpenGL ES rendered graphics to Java bitmap

I’m troubled with retrieving bitmap out of OpenGL ES 1.0 rendering. Graphics rendering is done in Android NDK and I want to display bitmap in Android Java. I know that I have to use glReadPixels ...
2
votes
1answer
70 views

Why do I get a strange blank screen error with OpenGLes/Android/NDK?

I'm getting a very weird error ever since I have "ported" the spritebatch code from Nokia's site. It runs well as a desktop applcation emulated by POWERVR. But on Android I only get a blank screen (in ...
1
vote
1answer
135 views

Texture won't appear using native code to load it with opengl es on android

I'm trying to apply a texture to an object in opengl es from the native side and I have no idea why it isn't showing up. I have a couple random objects drawn on the screen, and they're all visible ...
0
votes
1answer
224 views

glGenTextures not generating names

I am using OpenGL ES 1.1 with the NDK and occasionally when I call glGenTextures it does not change the value of name holder that I pass in (doesn't even set it to 0). glGetError returns 0, no ...
0
votes
2answers
120 views

Graphics and animation in android [closed]

i m doing project in android my topic is Wireless Gaming (Via Bluetooth) i developed some basic games like TicTacToy and SOS but now i want some graphics and animation in games i have google for it ...
3
votes
1answer
434 views

how to force landscape mode with NDK using pure c++ codes

generally,it works ok. but if i lock the screen,and wait APP_CMD_LOST_FOCUS occur,and then i unlock the srceen. it change to portrait! but i find the egl buff is still landscape setting, and all ...
0
votes
0answers
142 views

tracing a font in canvas

I am creating an android app where in a user can learn to write alphabet. My requirements are like this: An alphabet is displayed on canvas using Paint.drawText(). User will move his finger on the ...
1
vote
1answer
898 views

Why is eglMakeCurrent failing with EGL_BAD_ALLOC?

I am using OpenGL ES 2.0, and Android NDK r8b. I have a shared context that I use for worker threads. When I try to bind the shared context to a worker thread using eglMakeCurrent, I get the error ...
0
votes
0answers
157 views

Concurrency problems between GLThread and HeapWorker

My problem concerns the use of a native NDK library exposed to Java through Swig in the Android os. The native library is an OpenGLES engine. During the life of the app, the java code may create ...
2
votes
2answers
270 views

How to apply custom filters to camera stream in android?

Trying to write a camera app where I can have a custom filter applied at runtime, currently sdk offer stuff such as greyscale, sephia etc and it's as simple as setting a parameter. However I need to ...
1
vote
1answer
337 views

Android, Graceful OpenGL shutdown with NDK?

My app consists of two activities: one normal activity with typical Android UI widgets, and other activity which has JNI-based OpenGL ES View. The app switches both activities so I think I must ...
0
votes
2answers
848 views

android opengl ndk - unimplemented OpenGL ES API error

I am writing a pure c++ application for android using the NDK. I am trying to write a simple app that does 2D drawing with OpenGL, so no textures or anything like that. I applied all the ...
1
vote
0answers
225 views

Android NDK OpenGL; a slight slowdown

I wrote a simple OGL ES 2.0 program running on my Tegra2-based Android 2.2 device. It simply renders a big quad on the screen with some diffuse and specular lighting (no normal-mapped). Obviously, I ...
0
votes
0answers
120 views

In Android NDK OpenGL what is minimum to call glGetString()?

I am new to OpenGL, specifically using the Android NDK, and I'm working something that I'm a little unsure of. Basically, I need to be able to call glGetString() so that I can get some of the ...
1
vote
2answers
2k views

Install and run - OpenGL ES 3.0 on Android

I just read about the release of OGLES 3. Some has any idea if it is already feasible to install it on Android Smartphones and use it for developing 3D Apps? Or this will be possible only by 2013? ...
0
votes
3answers
424 views

Android OpenGL ES 2.0: Do I need to check if VBOs are supported before using?

I want my code to perform well in all devices supporting Es 2.0. In my code, I am using VBOs, reading documentation reveals that it requires the implementation of extension ...
0
votes
0answers
104 views

start ndk SanAngeles from shell@android

I have put the SanAngeles demo to run in my phone. Here are steps I took: $ android update project -p . --target android-14 $ ndk-build -B V=1 APP_OPTIM=debug NDK_DEBUG=1 $ ant debug install It ...
0
votes
1answer
215 views

glDiscardFrameBufferEXT undefined in Android, is there an equivalent?

I am currently in the process of converting a framework (OpenGL ES 1.1, with extensions) to Android. Trouble is, the framework uses frame buffers, yet glDiscardFramebufferEXT returns an error that it ...
1
vote
0answers
262 views

Create a message dialog in Android via NDK callback

I have an android app in which I've set up an OpenGL context on the Java side, and am sending drawing from the NDK/C++ side. This all seems to work well. I want the C++ side to be able to pop up a ...
0
votes
3answers
805 views

draw text in Android native activity

Hell o all, I made native activity and i want to draw some text. what is the easiest way to do this? can i do this by using openGL and if yes how? Thanks for help.
0
votes
1answer
418 views

OpenGL ES compile errors

When trying to write these functions in eclipse with android NDK errors given that there are invalid arguments and such: m_Display = eglGetDisplay(EGL_DEFAULT_DISPLAY); m_Surface = ...
0
votes
0answers
239 views

Is there a way to natively access android DPI, without using JNI?

My android game uses OpenGL and Android NDK. I am currently passing the necessary dpi values as parameters, by making JNI native call from my Activity/GLSurfaceView. Currently I am using : // ...
2
votes
1answer
603 views

How do I create an OpenGL ES 2 context in a native activity?

For the life of me, I cannot find any good pure Android NDK examples for OpenGL ES 2. The one included native-activity sample project builds an ES 1 context. Are there any sample programs ...
0
votes
0answers
873 views

Display cv::Mat with OpenGL in fully native app

I'm trying to make a simple fully-native app which uses OpenGL-ES. Thanks to the ndk sample native-activity I was able to display a color on the screen. Now I want to display the content of a cv::Mat ...
1
vote
1answer
137 views

Triangles not drawn after hitting home button on Android

Hello I have recently been playing around with OpenGL ES 1.1 on android ndk and I'm kind of stuck with a problem. Whats happening is that I'm rendering a simple red square on the screen, when I launch ...

1 2 3 4