Ferdinand Stickstoff
Ferdinand Stickstoff

Reputation: 53

Is OpenGL on macOS deprecated?

I've started to get a little involved with OpenGL, but I get warnings all the time!

Why is, for example, glutInit(&argc, arg); deprecated in macOS 10.9? ('glutInit' is deprecated: first deprecated in macOS 10.9 - OpenGL API deprecated.)

Is there any way to Update OpenGl?

Upvotes: 3

Views: 3275

Answers (1)

Michael Kenzel
Michael Kenzel

Reputation: 15943

According to the OpenGL Programming Guide for Mac as well as this here (all the way at the bottom), OpenGL is a deprecated technology starting with macOS 10.14. They want you to use Metal instead…

Upvotes: 10

Related Questions