grovesNL / glow

GL on Whatever: a set of bindings to run GL anywhere and avoid target-specific code
Apache License 2.0
1.2k stars 130 forks source link

about missed glBegin #199

Closed oldoldman closed 2 years ago

oldoldman commented 2 years ago

I can't find glBegin in GlFns , is this by design? I would like it for completeness. Many thanks.

grovesNL commented 2 years ago

Hi @oldoldman! :wave: We don't currently support the older fixed rendering pipeline because the portability isn't very good and it's generally considered legacy functionality at this point. For example, it's deprecated by the OpenGL Core profile and not supported by WebGL 1+/OpenGL ES 2+. If possible I'd recommend using the programmable rendering pipeline instead.

oldoldman commented 2 years ago

thank you. got it.