OpenGL ES versus OpenGL

后端 未结 13 1506
灰色年华
灰色年华 2020-12-23 02:49

What are the differences between OpenGL ES and OpenGL ?

13条回答
  •  心在旅途
    2020-12-23 03:17

    Two of the more significant differences between OpenGL ES and OpenGL are the removal of the glBegin ... glEnd calling semantics for primitive rendering (in favor of vertex arrays) and the introduction of fixed-point data types for vertex coordinates and attributes to better support the computational abilities of embedded processors, which often lack an FPU

    Have a look here: OpenGL_ES

提交回复
热议问题