Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2018-06-16 05:17:16 +0300
committerRay Molenkamp <github@lazydodo.com>2018-06-16 05:17:16 +0300
commit9d876960e8914bfa11bc3be1e500832711c20350 (patch)
treefe0a55bf269e93cbb51e3f229e01a06722d472d2 /intern
parent01f576e87b54159bb360cf1ed85518bb75231107 (diff)
This option limits visibility of the glew.h header to just bf_gpu and intern_gawain
this is to highlight areas in the code that still directly do opengl calls or use opengl types. This is in preparation for supporting alternative rendering back-ends. Reviewers: brecht, fclem Differential Revision: https://developer.blender.org/D3304
Diffstat (limited to 'intern')
-rw-r--r--intern/gawain/CMakeLists.txt7
-rw-r--r--intern/gawain/gawain/gwn_common.h5
2 files changed, 11 insertions, 1 deletions
diff --git a/intern/gawain/CMakeLists.txt b/intern/gawain/CMakeLists.txt
index 177c76327aa..ced52b22e2c 100644
--- a/intern/gawain/CMakeLists.txt
+++ b/intern/gawain/CMakeLists.txt
@@ -1,3 +1,10 @@
+# WITH_OPENGL limits the visibility of the opengl headers to just gawain and bg_gpu,
+# to more easily highlight codepadths in other libraries that need to be refactored,
+# bf_intern_gawain is allowed to have opengl regardless of this option.
+
+if(NOT WITH_OPENGL)
+ add_definitions(-DWITH_OPENGL)
+endif()
set(INC
gawain
diff --git a/intern/gawain/gawain/gwn_common.h b/intern/gawain/gawain/gwn_common.h
index f1512bf4466..6a56543da40 100644
--- a/intern/gawain/gawain/gwn_common.h
+++ b/intern/gawain/gawain/gwn_common.h
@@ -20,7 +20,10 @@
#define TRUST_NO_ONE 1
#endif
-#include <GL/glew.h>
+#if defined(WITH_OPENGL)
+ #include <GL/glew.h>
+#endif
+
#include <stdbool.h>
#include <stdint.h>