Blending transparent textures with depth

后端 未结 1 1392
伪装坚强ぢ
伪装坚强ぢ 2021-01-03 03:07

I am trying to blend textures which have transparent areas:

glEnable( GL_TEXTURE_2D );
glBindTexture( GL_TEXTURE_2D, ...);
glVertexPointer( 2, GL_FLOAT, 0, .         


        
相关标签:
1条回答
  • 2021-01-03 03:55

    Enabling depth test doesn’t actually sort your geometry by depth—in the usual GL_LESS case, it merely prevents primitives from drawing if they aren’t closer to the viewer than what has previously been drawn. This allows you to draw opaque geometry in whatever order you want and still get the desired result, but correct rendering of blended geometry typically requires everything behind the blended object to have already been rendered.

    Here’s what you should be doing to get a mix of opaque and blended geometry to look right:

    1. Separate your blended geometry from your opaque geometry.
    2. Sort your blended geometry from back to front.
    3. Draw all the opaque geometry first as usual.
    4. Draw your blended geometry in sorted order. You’ll want to leave depth testing enabled but temporarily disable depth writes with glDepthMask(GL_FALSE).

    Alternately, if your content is always either fully opaque or fully transparent, you can just enable alpha testing and disable blending, but I’m guessing that’s not what you’re looking for.

    0 讨论(0)
提交回复
热议问题