What is the correct behavior when both a 1D and a 2D texture are bound in OpenGL?

后端 未结 3 1735
清歌不尽
清歌不尽 2021-02-19 22:20

Say you have something like this:

glBindTexture(GL_TEXTURE_2D, my2dTex);
glBindTexture(GL_TEXTURE_1D, my1dTex);
glBegin...

What is the correct

相关标签:
3条回答
  • 2021-02-19 22:37

    The GL state for the bindings is one texture name per target (i.e. 1D/2D/3D/cube). So when calling

    glBindTexture(GL_TEXTURE_2D, my2dTex)
    glBindTexture(GL_TEXTURE_1D, my1dTex)
    

    the GL will remember both settings.

    Now, the answer of which one GL will use depends on whether you have a shader on.

    If a shader is on, the GL will use whatever the shader says to use. (based on sampler1d/sampler2d...).

    If no shader is on, then it first depends on which glEnable call has been made.

    glEnable(GL_TEXTURE_2D)
    glEnable(GL_TEXTURE_1D)
    

    If both are enabled, there is a static priority rule in the spec (3.8.15 Texture Application in the GL 1.5 spec).

    Cube > 3D > 2D > 1D
    

    So in your case, if both your texture targets are enabled, the 2D one will be used.

    As a side note, notice how a shader does not care whether or not the texture target is Enabled...

    Edit to add:

    And for the people who really want to get to the gritty details, you always have a texture bound for each target * each unit. The name 0 (the default for the binding state) corresponds to a series of texture objects, one per target. glBindTexture(GL_TEXTURE_2D, 0) and glBindTexture(GL_TEXTURE_1D, 0) both bind a texture, but not the same one...

    This is historical, specified to match the behavior of GL 1.0, where texture objects did not exist yet. I am not sure what the deprecation in GL3.0 did with this, though.

    0 讨论(0)
  • 2021-02-19 22:41

    I think that the 1d texture will be drawn. As far as I know, each texture unit can have only one texture bound at a time. The number of dimensions of the texture doesn't really come into it.

    To have more than one texture bound you have to activate more than one texture unit (using glActiveTexture), like this:

    glActiveTexture(GL_TEXTURE0);
    glBindTexture(GL_TEXTURE_2D, my2dTex);
    glActiveTexture(GL_TEXTURE1);
    glBindTexture(GL_TEXTURE_1D, my1dTex);
    

    This comes from my knowledge of OpenGL 2.1 though, so please correct me if they've introduced some fancy new texture extension in a later version!

    0 讨论(0)
  • 2021-02-19 22:49

    The applied texture is the last specified with BindTexture routine.

    From the specification:

    The new texture object bound to target is, and remains a texture of the dimensionality and type specified by target until it is deleted. .... If the bind is successful no change is made to the state of the bound texture object, and any previous binding to target is broken.

    Indeed in your example it will be applied the 1D texture, since it "overwrite" the state of the active texture unit.

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