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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-04-01 22:32:19 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-04-01 22:32:19 +0400
commiteec0d2ee535825daa323886ed11970adc102a130 (patch)
tree7bbeb3950b9e028dc280066b4f753499902dca67 /source/blender/bmesh/intern/bmesh_mesh_conv.c
parent5524ed9ba2d60331abed47c9df0bc2fcf330b36b (diff)
Removed ME_CDFLAG_FREESTYLE_EDGE and ME_CDFLAG_FREESTYLE_FACE from Mesh::cd_flag.
Suggested by Campbell Barton through a review comment of the Freestyle branch.
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_mesh_conv.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_mesh_conv.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/source/blender/bmesh/intern/bmesh_mesh_conv.c b/source/blender/bmesh/intern/bmesh_mesh_conv.c
index c68bb2cd20c..27e4a8df2a7 100644
--- a/source/blender/bmesh/intern/bmesh_mesh_conv.c
+++ b/source/blender/bmesh/intern/bmesh_mesh_conv.c
@@ -146,29 +146,6 @@ void BM_mesh_cd_flag_apply(BMesh *bm, const char cd_flag)
BM_data_layer_free(bm, &bm->edata, CD_CREASE);
}
}
-#ifdef WITH_FREESTYLE
- if (cd_flag & ME_CDFLAG_FREESTYLE_EDGE) {
- if (!CustomData_has_layer(&bm->edata, CD_FREESTYLE_EDGE)) {
- BM_data_layer_add(bm, &bm->edata, CD_FREESTYLE_EDGE);
- }
- }
- else {
- if (CustomData_has_layer(&bm->edata, CD_FREESTYLE_EDGE)) {
- BM_data_layer_free(bm, &bm->edata, CD_FREESTYLE_EDGE);
- }
- }
-
- if (cd_flag & ME_CDFLAG_FREESTYLE_FACE) {
- if (!CustomData_has_layer(&bm->pdata, CD_FREESTYLE_FACE)) {
- BM_data_layer_add(bm, &bm->pdata, CD_FREESTYLE_FACE);
- }
- }
- else {
- if (CustomData_has_layer(&bm->pdata, CD_FREESTYLE_FACE)) {
- BM_data_layer_free(bm, &bm->pdata, CD_FREESTYLE_FACE);
- }
- }
-#endif
}
char BM_mesh_cd_flag_from_bmesh(BMesh *bm)
@@ -183,14 +160,6 @@ char BM_mesh_cd_flag_from_bmesh(BMesh *bm)
if (CustomData_has_layer(&bm->edata, CD_CREASE)) {
cd_flag |= ME_CDFLAG_EDGE_CREASE;
}
-#ifdef WITH_FREESTYLE
- if (CustomData_has_layer(&bm->edata, CD_FREESTYLE_EDGE)) {
- cd_flag |= ME_CDFLAG_FREESTYLE_EDGE;
- }
- if (CustomData_has_layer(&bm->pdata, CD_FREESTYLE_FACE)) {
- cd_flag |= ME_CDFLAG_FREESTYLE_FACE;
- }
-#endif
return cd_flag;
}