Point to grow and shrink by using gl_PointSize

后端 未结 1 1715
情话喂你
情话喂你 2021-01-24 18:19

I\'m Trying to grow and shrink an point by using this function glPointSize()

    float i;
    for (i = 0.0; i < 400.0; i ++) {
        glPointSi         


        
1条回答
  •  故里飘歌
    2021-01-24 19:01

    Implementations have a limitation on the size of points. The GL_POINT_SIZE_RANGE can be used to fetch this limit, but it will generally be rather less than 400. A larger point size will be clamped to this range.

    0 讨论(0)
提交回复
热议问题