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

I'm working on small 2d rendering engine for IOS. I want to render many sprites that are located in different textures. Now that sounds simple... Just render all sprites that belong to same texture and move to next ... But how to handle overlapping of primitives that have different textures?

problem

I want to render them in exact same way as on the picture (overlapped). That means I need to switch texture three times. What if I have hundreeds of such mixed sprites? To avoid texture switching on client and render all sprites in one shot. I'm using following code in fragment shader:

if(txt >= 0.5)
    gl_FragColor = texture2D(texture1, texCoords)* clr;

if (txt >= 1.5)
    gl_FragColor = texture2D(texture2, texCoords)* clr;

if (txt >= 2.5)
    gl_FragColor= texture2D(texture3, texCoords)* clr;

if (txt >= 3.5)
    gl_FragColor = texture2D(texture4, texCoords)* clr;

if (txt >= 4.5)
    gl_FragColor = texture2D(texture5, texCoords) * clr;

Because of dynamic branching I have performance issues running on device. Is there better solution?

share|improve this question
You never get your app to scale if your going to have lots of texture and vertext. You need to be using VBOs and FBOs, then switching bettween texture is setting a new pointer. – Pareshkumar Jul 29 '12 at 1:59
A common way to combat this is to make use of a texture atlas -> en.wikipedia.org/wiki/Texture_atlas – borrrden Jul 29 '12 at 2:25
@Pareshkumar Let's say I have two elements A and B in VBO-A and VBO-B both VBO's assigned to different textures. Let's say I need to render first A and then on top B, then again A and then B. I need to make 4 switches, is this correct? – victor.t Jul 29 '12 at 3:43
@borrrden I'm already using multiple texture atlases. Let say you developing UI library and you have font(s) atlas and elements atlas. Now you need to render text over element and then overlap it with different element (popup) with another text. We got exactly same problem even with texture atlases (in current case two). I mean you can't keep everything in single texture atlas as maximum dimentions is 2048 x 2048 – victor.t Jul 29 '12 at 3:45
changing a Buffer ID on the GL stack is a different story then loading a new texture.In mobile its very much a game changer of what you can pull off when you use proper memory mapping. and the worst part of not using VBOs is your just coping memory from one space to another every frame ever time you load a texture. When changing VBO id your just changing the pointer(4 bytes) where the stored data is on the video/opengl memory. how much memory exchange is going on one 2048x2048 texture: 4.1k per texture that is read every time you change. 4194304 bytes - 4 bytes = 4194304 bytes save a frame! – Pareshkumar Jul 29 '12 at 5:00
show 5 more comments

1 Answer

up vote 0 down vote accepted

Assuming you have evidence of a real performance issue (and you shouldn't bother with this unless you do), the solution is quite easy: use your depth buffer.

Use an orthographic projection so that sprites don't get bigger/smaller when they move forward. Give each sprite a depth value, and let the depth test remove unwanted parts of sprites.

share|improve this answer
Oh I didn't see your answer here, but if your building a framework how can know what will the end user of your API is going to throw at it? Why would you not build for the worst case? If your just one use case in mind then just sure just stress that make it work commit the code and move on. – Pareshkumar Jul 29 '12 at 21:32
I thought about this ... But will this break pixel perfect texture matching because of z value? What if I'm rendering multiple VBO's those I sent first will be already in color buffer? – victor.t Jul 29 '12 at 22:24

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.