Hello Egon , I created texture by myself and use setExternalId to set texture id, when app pause and reactive , the texture lost , how to resove this problem? Thank you ! :)
If you are creating a texture out of the engine's scope, you have to make sure to upload it again after a context loss. So in this case, you have to reupload the texture in onResume and set the new ID.
Yes , I reupload the texture and it worked ! But is seems a little something wrong , at the first , the transparent clamping texture shows ok, but when reload texture , there are a thick black line around the texture. I don't know why...
Not sure what you mean...what is the "transparent clamping texture".
Sorry , A plane set with a transparent texture , at it's top , show a thick black line , I'm sure set the clamping by GL_CLAMP_TO_EDGE.
And that texture comes from inside of jPCT-AE or is it external?
Texture comes not inside of jPCT-AE , it created by myself.
Texture tx = new Texture(1,1);
int exid= externTexGen();
tx.setExternalId(exid, GL10.GL_TEXTURE_2D);
....
If it's external, jPCT-AE doesn't do anything with that texture except for binding it for rendering. Maybe you are not setting it up correctly. How are you setting the actual content of that texture?
I am so sorry , it's my mistake set . Now it's ok.
Could you add a new construct for texture that use extern glID to save memory ? like Texture(int glid , int gltarget) it only use glid and target.
You can use this constructor
Texture(int width, int height, RGBColor col)
and set null as col. That way, the creation of the internal int[]-array will be omitted.
Thank you very much ! :)
sorry , I have another question , when i set
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MAG_FILTER, GL10.GL_LINEAR);
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MIN_FILTER, GL10.GL_LINEAR);
the texture shows ok , but when I set
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MIN_FILTER,GL10.GL_LINEAR_MIPMAP_LINEAR);
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MAG_FILTER,GL10.GL_LINEAR);
gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL11.GL_GENERATE_MIPMAP, GL10.GL_TRUE);
the texture become white , How can i do mipmap ? thank you !
That's all for the external texture, i guess? May i ask what's the purpose of all this is? The option to redirect a texture to an external source was meant to be used for textures filled by the camera or the media player. But for those textures, mip maps make no sense and won't even work. For almost all other textures, there's no point in making them external. So...why?
To save JVM memory, I upload the texture data to GPU and then release the bitmap, not keep data in JVM, by this way can add more textures. My app should run on most device like JVM is 32M.
That's overcomplicated, hacky and rather pointless then IMHO. The bitmap will be released anyway, jPCT-AE doesn't hold a reference to it. It holds the raw pixel data in VM memory by default, but you can get rid of that by calling keepPixelData(false) on the Texture. You can also use this http://www.jpct.net/jpct-ae/doc/com/threed/jpct/TextureManager.html#virtualize(com.threed.jpct.Texture) (http://www.jpct.net/jpct-ae/doc/com/threed/jpct/TextureManager.html#virtualize(com.threed.jpct.Texture)) to swap pixel data to the sd card instead of keeping it in memory.
Anyway, which device that's still being used today and is powerful enough to run your app is limited to 32m? I haven't come across a 32m VM for years. Letting the GPU generate the mipmaps via GL_GENERATE_MIPMAP is unreliable especially on the older devices you are targeting. That's why jPCT-AE generates mipmaps on the CPU by default (http://www.jpct.net/jpct-ae/doc/com/threed/jpct/Config.html#internalMipmapCreation (http://www.jpct.net/jpct-ae/doc/com/threed/jpct/Config.html#internalMipmapCreation)).
Hello Egon, I make a test on my handset, when I add 30 numbers 512X512 size texture , the app OOM,
01-21 18:46:14.324: E/dalvikvm(11106): Out of memory: Heap Size=32391KB, Allocated=29256KB, Bitmap Size=512KB, Limit=32768KB
I have set tx.keepPixelData(false) but it still OOM, when I create texture by myselft , upload gpn and then free the bitmap, it's Ok.
Is the keepPixelData no effect ?
It has, just not at the stage in that you think it has. In your code, you upload the textures directly after loading them. jPCT-AE doesn't do this by default, because it can't ensure that you are in the render thread at that stage.
You can work around that by calling TextureManager.preWarm(<FrameBuffer>) after loading and assigning each texture. What kind of application is that? Why do you need 30+ 512*512 textures?
it seems no effect :-\
for(int i = ... i<30...
Texture tx = new Texture(bitmap);
bitmap.recycle();
tx.keepPixelData(false);
TextureManager.getInstance().addTexture(txitem.tname,tx);
TextureManager.getInstance().preWarm(buffer);
Maybe because of the additional mipmaps, that will be created by default. Those will add another ~10mb to the mix. Just look at the log output to see what happens (it would be great if you could post that as well). However, i still think that you are fighting the wrong fight here. Loading 30+ 512*512 is simply too much for a mobile device especially for one with a 32mb VM: Your textures alone will eat 30mb (512*512*4*30) of that amount and on older Android versions, garbage collection wasn't that great. So with just maybe 1 mb left, you are at a limit where it will start to become unstable. If you have to such an insane amount of textures, why don't you provide two resolutions at least? One 512*512 for 64+ VMs and one 256*256 for the lower ones.
This is only a test I do, I want to know how many textures can support by jpct , and I want my app can run on old android device. so if there is a way to extend jpct memory useage from natvie , it's much helpful and powerful...
Your way of creating textures is limited by the same restrictions as jPCT-AE's internal code is. It doesn't use other kinds of memory or has more memory at its disposal. It's the exact same thing, just done by reinventing the wheel to a degree. Texture as a class holds a simple reference to the texture on the gpu, some additional status flags and settings and, if you let it do so, a reference to the original pixels array (compressed or uncompressed). There's no hidden memory leak or something.
If you feel that you have to work around the engine's core, then feel free to do it. I just don't see the point of this whole thing. Making an app run on more limited devices is one thing and if that's the only device that you have to test it on, i fully understand that you want/have to...but honestly: An app that pushes such a device to the limits by adding a large amount of huge textures won't run very well on it anyway. If you are designing for such devices, you'll have to watch your content and performance. Stuffing as many textures into it as possible is a nice academic test case, but it has very limited value in the real world.
jPCT-AE offers you plenty of means to keep memory usage low if needed like dumping the pixels array altogether, compressing it in-memory, swapping it onto the sdcard (compressed or uncompressed), uploading the texture in 4bpp or as ETC1 compressed. You can even swap geometry out to the sd card, if you want that.
Thank you very much, I hope all this not waste your time :) thanks again !