I am currently making the following openGL calls onDrawFrame() in an android GLSurfaceView():
GLES20.glActiveTexture(GLES20.GL_TEXTURE0);
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, cameraTexture[0]);
GLES20.glTexImage2D(GLES20.GL_TEXTURE_2D, 0, GLES20.GL_LUMINANCE, camPreviewSize.width, camPreviewSize.height, 0, GLES20.GL_LUMINANCE, GLES20.GL_UNSIGNED_BYTE, ByteBuffer.wrap(yArray));
GLES20.glTexParameterf(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MIN_FILTER, GLES20.GL_LINEAR);
I need to do this (or something like it) every frame because I am processing a live feed from an android camera preview with a custom callback method using android's setPreviewCallback() functionality within the camera, but my garbage collection is going absolutely wild (the following repeats about 10x a second!):
....
GC_FOR_ALLOC freed 1530K, 42% free 3671K/6307K, paused 18ms
GC_FOR_ALLOC freed 1530K, 42% free 3671K/6307K, paused 22ms
GC_FOR_ALLOC freed 1530K, 42% free 3671K/6307K, paused 25ms
GC_FOR_ALLOC freed 1530K, 42% free 3671K/6307K, paused 20ms
GC_FOR_ALLOC freed 1530K, 42% free 3671K/6307K, paused 20ms
GC_FOR_ALLOC freed 1530K, 42% free 3671K/6307K, paused 16ms
GC_FOR_ALLOC freed 1530K, 42% free 3671K/6307K, paused 22ms
....
yArray is a byte array, and I wrap it to a buffer. I've done profiling using DDMS, and indeed the majority of allocations are byte arrays, and from the reading I have done on the wrap function, it seems as though it may create an underlying byte[] on a call to wrap, which will then be collected by the GC after it is used as a texture.
How can I reduce the number of allocations? Should I change by GL calls somehow? It seems like I could just be reusing the same byte array instead, but I'm not sure how.
Any help would be so appreciated! This amount of garbage scares me!
