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:
authorRay Molenkamp <github@lazydodo.com>2020-08-09 03:04:46 +0300
committerRay Molenkamp <github@lazydodo.com>2020-08-09 03:04:46 +0300
commitb522e834ec3025a9db8abd2c57fae2704dde4d2a (patch)
tree5eb9aba10b41c3c592162f74aaf250cca2d7c222 /source/blender/gpu
parenta1d57e3f05f1602a07698e19f97f861d41f14775 (diff)
msvc: Fix build error with msvc 2017
`using blender;` Was required to get the Vector type.
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/opengl/gl_context.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/gpu/opengl/gl_context.cc b/source/blender/gpu/opengl/gl_context.cc
index 029140208f7..37c84abaa7f 100644
--- a/source/blender/gpu/opengl/gl_context.cc
+++ b/source/blender/gpu/opengl/gl_context.cc
@@ -33,6 +33,7 @@
#include "gl_backend.hh" /* TODO remove */
#include "gl_context.hh"
+using namespace blender;
using namespace blender::gpu;
/* -------------------------------------------------------------------- */