Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this for now:

    //Setup a move to the current position.
    glLoadIdentity();
    glTranslatef(squarePosition.x, squarePosition.y, 0);

//A simple base texture for "diffuse map".
glBindTexture(GL_TEXTURE_2D, spriteTexture[0]); //Bind.

    //Draw vertex/texture into the framebuffer.
    glVertexPointer(2, GL_FLOAT, 0, spriteVertices);
    glEnableClientState(GL_VERTEX_ARRAY);
    glTexCoordPointer(2, GL_SHORT, 0, spriteMappingCoordinates);
    glEnableClientState(GL_TEXTURE_COORD_ARRAY);
    glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);

//An additional grayscale image for "specular map".
glBindTexture(GL_TEXTURE_2D, spriteTexture[1]); //Bind.

    //Draw vertex/texture into the framebuffer.
    glVertexPointer(2, GL_FLOAT, 0, spriteVertices);
    glEnableClientState(GL_VERTEX_ARRAY);
    glTexCoordPointer(2, GL_SHORT, 0, spriteMappingCoordinates);
    glEnableClientState(GL_TEXTURE_COORD_ARRAY);
    glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);  

And I want to do it with one single polygon by multi-texturing method, somethin' around glTexEnvi, but I just cannot figure out how to do it exactly. A really simple light-commented code could help me a lot, thanks in advance.

share|improve this question
As a preliminary question, do you want your rendered result to be simply diffuse + specular, or are you looking for a more complicated interaction between the two? – Pivot Jan 29 '10 at 8:22
Simple alpha blend I want to do. Maybe Specular can be ADD-ed, but thats all. – Geri Jan 29 '10 at 9:39
My really similar question: stackoverflow.com/questions/2155694/… – Geri Jan 29 '10 at 10:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.