Ortho texture issue

Started by
0 comments, last by Brother Bob 11 years, 7 months ago
Hi all,

I am trying to render a textured quad in ortho mode. When I render it as a rectangle, it works fine, as this picture shows:
square11.png?w=404

However, when I try to move one corner half way to the center, the texture gets weirdly skeeved:
square21.png?w=405

Notice the red line going up. I would think that it should be sloped towards the upper right corner, but it's rendered straight up. Is this normal?
There is only one textured quad in this picture, rendered using fixed function pipeline. The texture coords are all either 0 or 1 in the corners. Why is the texture rendered like this?

Thanks in advance.
Knut
Advertisement
OpenGL can only correctly render planar quads (quads where the four vertices are on a plane). Due to the way the position and texture coordinates interact to form vertices, your quad isn't planar anymore when you shift the position like that without altering the texture coordinate.

Read this: clicky.

This topic is closed to new replies.

Advertisement