10.9以上的MacOS系统OpenGL有了新的API来替代之前的GLUT库,之前的GLUT库里很多函数被标记为了deprecated,即将废弃的,但是考虑兼容性,当前系统版本还是支持的。
下面介绍如何消除这些警告提示。
报错如下:
'glTranslatef' is deprecated: first deprecated in macOS 10.14 - OpenGL API deprecated. (Define GL_SILENCE_DEPRECATION to silence these warnings)
根据报错我们定义GL_SILENCE_DEPRECATION
:
#define GL_SILENCE_DEPRECATION
但是警告并没有消失,原因是我们必须吧该语句放在include
OpenGL文件之前:
#ifdef __APPLE__
#define GL_SILENCE_DEPRECATION
#include <OpenGL/gl.h>
#include <GLUT/glut.h>
#else
#include <GL/gl.h>
#include <GL/glut.h>
#endif
另外一个方法是在编译阶段传递-Wno-deprecated-declarations
选项给编译器。
此外还有一个警告是无法删除的:
OpenGl is deprecated.Consider migrating to Metal instead
这个就是提示现在GLUT已经弃用,可以转向使用Metal,相关转换教程可参考https://www.raywenderlich.com/9211-moving-from-opengl-to-metal。
参考:
https://stackoverflow.com/questions/53562228/silencing-opengl-warnings-on-macos-mojave
https://blog.csdn.net/oktears/article/details/42214519?utm_source=app