I need to render an object using multi-texturing but both the textures have different uv coordinates for same object. One is normal map and other one is light map.
Please provide any useful material regarding this.
I need to render an object using multi-texturing but both the textures have different uv coordinates for same object. One is normal map and other one is light map.
Please provide any useful material regarding this.
Copyright © 2021 Jogjafile Inc.
In OpenGL ES 2 you use shaders anyway. So you're completely free to use whatever texture coordinates you like. Just introduce an additional attribute for the second texture cooridnate pair and delegate this to the fragment shader, as usual:
And in the fragment shader use the respective coordinates to access the textures:
And of course you need to provide data to this new attribute (using
glVertexAttribPointer
). But if all this sounds very alien to you, then you should either delve a little deeper into GLSL shaders or you actually use OpenGL ES 1. In this case you should retag your question and I will update my answer.EDIT: According to your update for OpenGL ES 1 the situation is a bit different. I assume you already know how to use a single texture and specify texture coordinates for this, otherwise you should start there before delving into multi-texturing.
With
glActiveTexture(GL_TEXTUREi)
you can activate the ith texture unit. All following operations related to texture state only refer to the ith texture unit (likeglBindTexture
, but alsoglTexEnv
andgl(En/Dis)able(GL_TEXTURE_2D)
).For specifying the texture coordinates you still use the
glTexCoordPointer
function, as with single texturing, but withglCientActiveTexture(GL_TEXTUREi)
you can select the texture unit to which following calls toglTexCoordPointer
andglEnableClientAttrib(GL_TEXTURE_COORD_ARRAY)
refer.So it would be something like:
The reason I set the parameters for the second texture before the first texture is only so that after setting them we end up with texture unit 0 active. I think I have already seen drivers making problems when drawing and another unit than unit 0 was active. And it's always a good idea to leave a more or less clean state at the end, which means the default texture unit (
GL_TEXTURE0
) active, as otherwise code that doesn't care about multi-texturing could get problems.EDIT: If you use immediate mode (
glBegin/glEnd
) instead of vertex arrays, then you don't useglTexCoordPointer
, of course. In this case you also don't needglClientAttribTexture
, of course. You just need to useglMultiTexCoord(GL_TEXTUREi, ...)
with the appropriate texture unit (GL_TEXTURE0
,GL_TEXTURE1
, ...) instead ofglTexCoord(...)
. But if I'm informed correctly, OpenGL ES doesn't have immediate mode, anyway.