I'm trying to use a 1D array as a lookup table in my vertex shader.. so why when I call
texture1D(tex,gl_TexCoord[0].s);
does it return a vec4? I mean I know that's what it does, but what do the 4 values represent? All I want is the one value from the texture based on the coordinate.