Fix point size bug in charts with GLES 3.0
vtkglPointSize
does not change point size for GLES 3.0 because glPointSize
is absent. To overcome this problem, set gl_PointSize
from the vertex shader. The value of gl_PointSize
is initialized by a uniform equivalent to the pen's width.