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:
authorDalai Felinto <dfelinto@gmail.com>2017-05-11 17:15:26 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-05-11 17:15:26 +0300
commit2f8a5ed985f63c632665469ae0e924c7d94ccc8a (patch)
treef34a3eb31284f405384f03abc23d399abeaf0890 /source/blender/modifiers
parent4f96c24af2ba6accfdb4c7e1c19ef45a063d2807 (diff)
Remove warnings after CDDM fix
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_subsurf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_subsurf.c b/source/blender/modifiers/intern/MOD_subsurf.c
index a23026c61da..e444fb85162 100644
--- a/source/blender/modifiers/intern/MOD_subsurf.c
+++ b/source/blender/modifiers/intern/MOD_subsurf.c
@@ -157,6 +157,10 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *ob,
result = cddm;
}
+#if defined(WITH_GL_PROFILE_CORE) && !defined(WITH_OPESUBDIV)
+ (void) do_cddm_convert;
+#endif
+
return result;
}