xeolabs / scenejs

An extensible WebGL-based 3D engine. This is an archived project.
https://xeolabs.github.io/scenejs/
Other
649 stars 165 forks source link

Improved handling of point geometry #485

Closed tsherif closed 8 years ago

tsherif commented 8 years ago

The key thing is that this removes the requirement for indices for point geometries. This is important as there seems to be a bug in IE/Edge that causes gl_PointSize to be ignored when drawing indexed geometries. This is preferable anyway as indices are redundant for points. I also added the ability to set point sizes programatically and updated the points example to show this.