Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The problem was mentioned here Android: do I have a memory leak? but no solutions were provided (yes, I tried not to keep reference to context anywhere). Also in comments somebody wrote "releasing the memory properly", but there ByteBuffer not releasing memory we can read that memory will be released when garbage collected.

Here is the error:

02-23 03:10:16.949: E/IMGSRV(9518): :0: __map: Map device memory failed
02-23 03:10:16.949: W/GraphicBufferMapper(9518): registerBuffer(0x5972f1e8) failed -14 (Bad   address)
02-23 03:10:16.949: E/GraphicBuffer(9518): unflatten: registerBuffer failed: Bad address (-14)
02-23 03:10:16.949: A/libc(9518): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 9543 (Thread-855)

No exceptions, just these 4 lines in logcat. Very strange.

First of all, I have an app which uses OpenGL ES 2.0 and trying to load hi-res textures and large (4 megabytes is unfortunately large for android). It seems the problem is android's memory. During loading textures I do like this:

Bitmap bitmap = BitmapFactory.decodeResource(...)
...
bitmap.recycle();

So there should't be any problems with that. I'm not sure how android works with videomemory, but I suppose that it doesn't count it after texture data is sent to videomemory (using glTexImage2D function) so in android's heap it should be only texture id.

I have 2 devices: Huawey MediaPad 7 (simple cheap tablet) and nexus 3 (seems to be cool expensive device). But The app works perfectly on tablet and crashes only on nexus.

I made an optimization: I allocated ONE buffer (80000 bytes shouldn't be too large for android) using "ByteBuffer.allocateDirect" function and do in a loop: copy data from "float[]" to that buffer and call "glBufferSubData". No changes: Crash on nexus.

If I don't load the buffers, it works, but I need. I even cleared references to "float[]" arrays after loading to let GC collect them. No changes: Crash on nexus.

Maybe, huawey doesn't think that 640K is enough for everybody (but producer of nexus thinks so). Whan can be solutions in this case?

Strange, if I try to write usedSize to log:

        Runtime info = Runtime.getRuntime();
        freeSize = info.freeMemory();
        totalSize = info.totalMemory();
        usedSize = totalSize - freeSize;

it shows nearly 13-14 MB used.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.