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
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/gpu/CMakeLists.txt2
-rw-r--r--source/blender/python/gpu/gpu_py_offscreen.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/python/gpu/CMakeLists.txt b/source/blender/python/gpu/CMakeLists.txt
index 22a3d3a79de..7f6fd9eefab 100644
--- a/source/blender/python/gpu/CMakeLists.txt
+++ b/source/blender/python/gpu/CMakeLists.txt
@@ -19,7 +19,9 @@ set(INC
.
../../blenkernel
../../blenlib
+ ../../editors/include
../../gpu
+ ../../imbuf
../../makesdna
../../../../intern/glew-mx
../../../../intern/guardedalloc
diff --git a/source/blender/python/gpu/gpu_py_offscreen.c b/source/blender/python/gpu/gpu_py_offscreen.c
index 7e371d4f774..b0e0dd27c7d 100644
--- a/source/blender/python/gpu/gpu_py_offscreen.c
+++ b/source/blender/python/gpu/gpu_py_offscreen.c
@@ -43,7 +43,8 @@
#include "GPU_framebuffer.h"
#include "GPU_texture.h"
-#include "../editors/include/ED_view3d.h"
+#include "ED_view3d.h"
+#include "ED_view3d_offscreen.h"
#include "../mathutils/mathutils.h"