JustOneMan
JustOneMan

Reputation: 202

How to call OpenGL functions in cross-platform apps?

For example: on Linux function name glBindVertexArray, but on OS X function name glBindVertexArrayAPPLE?

Upvotes: 0

Views: 34

Answers (1)

Aracthor
Aracthor

Reputation: 5907

glBindVertexArray is already cross-plateform, and works on OS X.

You can find Apple documentation on this precise function here.

Upvotes: 4

Related Questions