in an iOS app i want to put a texture on an object, render the scene, read it back and then read the "color" of that object to identify it.
This works fine, i use an RGB texture for that. The data to create the texture from are then: 1, 0, 0, 2, 0, 0, 3, 0, 0.
This takes quite a large amount of RAM, wasting 66%. I would like to use a texture with just ONE channel.
Reading the OpenGL specs for glTexImage2D it looks to me that using the format GL_RED is the way to go, but it does not seem to be available in iOS.
Can anybody confirm that or tell me another way on how to create a texture with just ONE channel in iOS?
Thanks for any hints, Torsten.