Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_surface.c
| Context not available. | |||||
| * \ingroup modifiers | * \ingroup modifiers | ||||
| */ | */ | ||||
| #include "CLG_log.h" | |||||
| #include "DNA_scene_types.h" | #include "DNA_scene_types.h" | ||||
| #include "DNA_object_types.h" | #include "DNA_object_types.h" | ||||
| Context not available. | |||||
| #include "MEM_guardedalloc.h" | #include "MEM_guardedalloc.h" | ||||
| static CLG_LogRef LOG = { "mod.surface" }; | |||||
| static void initData(ModifierData *md) | static void initData(ModifierData *md) | ||||
| { | { | ||||
| Context not available. | |||||
| } | } | ||||
| if (!ctx->object->pd) { | if (!ctx->object->pd) { | ||||
| printf("SurfaceModifier deformVerts: Should not happen!\n"); | CLOG_STR_ERROR(&LOG, "object->pd is NULL. Should not happen!"); | ||||
| return; | return; | ||||
| } | } | ||||
| Context not available. | |||||