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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-05-09 03:39:31 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-05-09 03:39:31 +0400
commitc8cbe63947f6ba05584b5dc6d298dd7301e5dbc0 (patch)
tree6a030c8fb79c0908dc4d94fe3e3cdd5b819faefa /source/blender/blenkernel/intern
parentf33080532cbefe3837a5dec0613b1fd803ac072e (diff)
Cycles: fix issues with texture coordinates and object scale. Auto texture
space size and location were outdated often, and already computed on demand by blender internal, now do that through RNA as well.
Diffstat (limited to 'source/blender/blenkernel/intern')
-rw-r--r--source/blender/blenkernel/intern/mesh.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/mesh.c b/source/blender/blenkernel/intern/mesh.c
index 3ccd09257e6..944f06cf740 100644
--- a/source/blender/blenkernel/intern/mesh.c
+++ b/source/blender/blenkernel/intern/mesh.c
@@ -494,7 +494,6 @@ Mesh *BKE_mesh_add(const char *name)
me->smoothresh = 30;
me->texflag = ME_AUTOSPACE;
me->flag = ME_TWOSIDED;
- me->bb = BKE_boundbox_alloc_unit();
me->drawflag = ME_DRAWEDGES | ME_DRAWFACES | ME_DRAWCREASES;
return me;