mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0030681: Configuration - suppress OpenGL deprecation warning on macOS 10.14
Define GL_SILENCE_DEPRECATION to suppress warnings.
This commit is contained in:
parent
66278500db
commit
42451ec057
@ -19,6 +19,9 @@
|
||||
#define GL_GLEXT_LEGACY // To prevent inclusion of system glext.h on Mac OS X 10.6.8
|
||||
#endif
|
||||
|
||||
// macOS 10.4 deprecated OpenGL framework - suppress useless warnings
|
||||
#define GL_SILENCE_DEPRECATION
|
||||
|
||||
#import <TargetConditionals.h>
|
||||
|
||||
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
|
||||
|
@ -46,6 +46,8 @@
|
||||
// include main OpenGL header provided with system
|
||||
#if defined(__APPLE__)
|
||||
#import <TargetConditionals.h>
|
||||
// macOS 10.4 deprecated OpenGL framework - suppress useless warnings
|
||||
#define GL_SILENCE_DEPRECATION
|
||||
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
|
||||
#include <OpenGLES/ES2/gl.h>
|
||||
#else
|
||||
|
@ -19,6 +19,9 @@
|
||||
#define GL_GLEXT_LEGACY // To prevent inclusion of system glext.h on Mac OS X 10.6.8
|
||||
#endif
|
||||
|
||||
// macOS 10.4 deprecated OpenGL framework - suppress useless warnings
|
||||
#define GL_SILENCE_DEPRECATION
|
||||
|
||||
#import <TargetConditionals.h>
|
||||
|
||||
#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
|
||||
|
Loading…
x
Reference in New Issue
Block a user