I've been trying to render a GL_QUAD (which is shaped as a trapezoid) with a square texture and wanted to know if there was a good tutorial for pulling this off. I'd like to try and use OpenGL only to pull this off. Right now the texture is getting heavily distorted and it's really annoying.
Normally, I would load the texture compute a homography but that means a lot of work and an additional linear programming library/direct linear transform function. I'm under the impression OpenGL can simplify this process for me, I'm just a bit inexperienced with this department of the API.
I've looked around the web and have seen the following:
http://hacksoflife.blogspot.com/2009/11/perspective-correct-texturing-q.html
http://www.gamedev.net/topic/419296-skewedsheared-texture-mapping-in-opengl
These all seem to assume you'll do some type of homography computation or use some parts of OpenGL I'm ignorant of ... any advice, opensource code references, or tutorial references would be appreciated!
Thanks!
ct
Update:
I've been reading a paper named "Navigating Static Environments Using Image-Space Simplification and Morphing" http://tinyurl.com/3bj5c8w - page 9 appendix A.
It looks like they disable perspective correction by multiplying the (s,t,r,q) texture coordinate with the vertex of a model's world space z component.
so for a given texture coordinate (s, r, t, q) for a quad that's shaped as a trapezoid, where the 4 components are:
(0.0f, 0.0f, 0.0f, 1.0f), (0.0f, 1.0f, 0.0f, 1.0f), (1.0f, 1.0f, 0.0f, 1.0f), (1.0f, 0.0f, 0.0f, 1.0f)
This is as easy as glTexCoord4f (s*vert.z, r*vert.z, t, q*vert.z)? Or am I missing some step? like messing with the GL_TEXTURE glMatrixMode?
Update #2:
That did the trick! Keep it in mind folks, this problem is all over the web and there weren't any easy answers. Most involved directly recalculating the texture with a homography between the original shape and the transformed shape...aka lots of linear algebra and an external BLAS lib dependency.