I am drawing some points using glDrawArrays(GL_POINTS, ...) and I would like to make them smooth round points instead of the squares. I know that there is no fixed function pipeline in OpenGL ES 2.0 so I am wondering if there is an easy way of doing this with the fragment shader?

Thanks in advance,

ExtremeCoder

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
+200

I would render the point as a textured quad. That is straight forward, will do the job, works on even the oldest OpenGL versions and is probably faster than a shader.

link|improve this answer
The problem is that I need to color the different points and there are so many that I would need pretty much 256 ^ 3 different textures... – ExtremeCoder Jul 30 '11 at 12:19
2  
You can use a single GL_INTENSITY (graylevel) texture end set the color of the quads vertices with glColor3f(). – whoplisp Jul 30 '11 at 12:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.