As far as i can tell to map a point you use
gl_FragColor = texture2D(Texture, gl_PointCoord);
And to map a triangle
gl_FragColor = texture2D(Texture, TexCoorFromVertexShader);
So if i want to us both - points and triangles how do i handle it. So far I'm thinking about having multiple programs and switching them depending on what am i drawing but that seems like a lot of overhead. Or is that just how things work?