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:
-rw-r--r--source/blender/draw/modes/pose_mode.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/draw/modes/pose_mode.c b/source/blender/draw/modes/pose_mode.c
index 1eb9fcb6a11..176e44199b3 100644
--- a/source/blender/draw/modes/pose_mode.c
+++ b/source/blender/draw/modes/pose_mode.c
@@ -170,6 +170,10 @@ static void POSE_cache_populate(void *vedata, Object *ob)
UNUSED_VARS(psl, stl);
+ /* In the future this will allow us to implement face manipulators,
+ * and similar functionalities. For now however, this is getting
+ * on the way of using pose mode, so disabling it. */
+#if 0
if (ob->type == OB_MESH) {
/* Get geometry cache */
struct Batch *geom = DRW_cache_mesh_surface_get(ob);
@@ -177,6 +181,9 @@ static void POSE_cache_populate(void *vedata, Object *ob)
/* Add geom to a shading group */
DRW_shgroup_call_add(stl->g_data->group, geom, ob->obmat);
}
+#else
+ UNUSED_VARS(ob);
+#endif
}
/* Optional: Post-cache_populate callback */