Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_uvproject.c
| Show First 20 Lines • Show All 278 Lines • ▼ Show 20 Lines | if (free_uci) { | ||||
| int j; | int j; | ||||
| for (j = 0; j < projectors_num; j++) { | for (j = 0; j < projectors_num; j++) { | ||||
| if (projectors[j].uci) { | if (projectors[j].uci) { | ||||
| MEM_freeN(projectors[j].uci); | MEM_freeN(projectors[j].uci); | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| mesh->runtime.is_original = false; | mesh->runtime.is_original_bmesh = false; | ||||
| return mesh; | return mesh; | ||||
| } | } | ||||
| static Mesh *modifyMesh(ModifierData *md, const ModifierEvalContext *ctx, Mesh *mesh) | static Mesh *modifyMesh(ModifierData *md, const ModifierEvalContext *ctx, Mesh *mesh) | ||||
| { | { | ||||
| Mesh *result; | Mesh *result; | ||||
| UVProjectModifierData *umd = (UVProjectModifierData *)md; | UVProjectModifierData *umd = (UVProjectModifierData *)md; | ||||
| ▲ Show 20 Lines • Show All 88 Lines • Show Last 20 Lines | |||||