View Full Version : Texture coordinates interpolating
Hi!
How does opengl interpolate between to vertices the tex-coordinates. Can have influence on the this method, because i don't want to have smooth shaded. I want to get steped shading effects.
Thanks
Juergen
davepermen
06-14-2002, 12:41 AM
i think you mean the filtering? GL_NEAREST against GL_LINEAR for the texturefiltering (you want them look blocky)
the texcoords get interpolated linearly, as there are 3 known texcoord-sets (one at each edge) and that means they can interpolate it over a plane.. linearly.
only that way exist http://www.opengl.org/discussion_boards/ubb/smile.gif
I generate a texTimage1d with color HSV from 0 to 180. Then i calcuate my TexCoords. When i use Filtering on an quad i want to get no smoth color distribution(GL_LINEAR). To get a few color areas between the vertices of the quad, should i use GL_NEAREST_MIPMAP_NEAREST?
Juergen
Powered by vBulletin® Version 4.2.0 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.