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:
authorHans Goudey <h.goudey@me.com>2021-10-03 04:33:15 +0300
committerHans Goudey <h.goudey@me.com>2021-10-03 04:33:15 +0300
commite863e056977d042fb3aa290e3d0537db225bda84 (patch)
treebc8657b4685ed27085f0ee8754c74bee337ed620 /source/blender/modifiers/intern/MOD_datatransfer.c
parentb57b4dfab135f7f10c1d3fb4af1c7e7745de5914 (diff)
Data Transfer: Remove unnecessary noisy error message
I've seen requests to remove this or complaints about this error message quite frequently. In lots of production files it's just always going off. It's not an actionable warning, and since "slow" is relative, it isn't always even correct. Differential Revision: https://developer.blender.org/D12694
Diffstat (limited to 'source/blender/modifiers/intern/MOD_datatransfer.c')
-rw-r--r--source/blender/modifiers/intern/MOD_datatransfer.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/blender/modifiers/intern/MOD_datatransfer.c b/source/blender/modifiers/intern/MOD_datatransfer.c
index e2b2cc58d48..34bb93cbbbc 100644
--- a/source/blender/modifiers/intern/MOD_datatransfer.c
+++ b/source/blender/modifiers/intern/MOD_datatransfer.c
@@ -163,7 +163,6 @@ static bool isDisabled(const struct Scene *UNUSED(scene),
return !dtmd->ob_source || dtmd->ob_source->type != OB_MESH;
}
-#define HIGH_POLY_WARNING 10000
#define DT_TYPES_AFFECT_MESH \
(DT_TYPE_BWEIGHT_VERT | DT_TYPE_BWEIGHT_EDGE | DT_TYPE_CREASE | DT_TYPE_SHARP_EDGE | \
DT_TYPE_LNOR | DT_TYPE_SHARP_FACE)
@@ -239,13 +238,6 @@ static Mesh *modifyMesh(ModifierData *md, const ModifierEvalContext *ctx, Mesh *
BKE_modifier_set_error(
ctx->object, (ModifierData *)dtmd, "Enable 'Auto Smooth' in Object Data Properties");
}
- else if (result->totvert > HIGH_POLY_WARNING ||
- ((Mesh *)(ob_source->data))->totvert > HIGH_POLY_WARNING) {
- BKE_modifier_set_error(
- ctx->object,
- md,
- "Source or destination object has a high polygon count, computation might be slow");
- }
return result;
}
@@ -473,7 +465,6 @@ static void panelRegister(ARegionType *region_type)
region_type, "advanced", "Topology Mapping", NULL, advanced_panel_draw, panel_type);
}
-#undef HIGH_POLY_WARNING
#undef DT_TYPES_AFFECT_MESH
ModifierTypeInfo modifierType_DataTransfer = {