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
AgeCommit message (Collapse)Author
2012-04-09Fix bug [#30863] Array Modifier Start and End Cap cause crash when the Cap ↵Nicholas Bishop
Object has vertex group Another crash with array caps, was caused by not making a deep enough copy of CD field. Also fixed the type of the 'mask' parameter, was int where it should be 64-bit.
2012-03-27style/name cleanup: have EDBM_* functions match our style guide and also ↵Campbell Barton
match BM_ function naming conventions
2012-03-18spelling cleanupCampbell Barton
2012-03-09style cleanup: comment blocksCampbell Barton
2012-03-09style cleanup: spelling.Campbell Barton
also remove large, duplicate comments from sunsky.h
2012-03-04style cleanup / comment formatting for bli/bke/bmeshCampbell Barton
2012-03-02bmesh - changes to mempool allocationsCampbell Barton
* double default edge allocation size (double the number of verts/faces). * CustomData_bmesh_init_pool was using allocsize & chunksize as the same variable. Now use type specific chunk size. * bmesh copy and editmode conversion now allocate the BMesh mempool size needed for the entire vert/edge/loop/face arrays since its known already.
2012-02-29Code Cleanup: remove non existing function declarations.Campbell Barton
added some missing functions too - which are not used yep but should be there for api completeness. * CDDM_set_mloop * CDDM_set_mpoly * BLI_mempool_count
2012-02-20- remove some unused editmesh functions.Campbell Barton
- copy & rename EditMesh stricts for use with scanfill (remove unused members)
2012-02-18svn merge ^/trunk/blender -r44189:44204Campbell Barton
2012-02-17unify include guard defines, __$FILENAME__Campbell Barton
without the underscores these clogged up the namespace for autocompleation which was annoying.
2012-01-30svn merge ^/trunk/blender -r43733:43751Campbell Barton
2012-01-27Minor fix for CD_TYPE_AS_MASK macro: shift operator uses the leftNicholas Bishop
operand's type for the result, so cast 1 to CustomDataMask.
2011-12-28minor edits and correcton to assertCampbell Barton
2011-12-28merge in customdata changes from BMesh - biggest change is caching the layer ↵Campbell Barton
index values in a typemap.
2011-12-26svn merge ^/trunk/blender -r42839:42871Campbell Barton
2011-12-26include BLO_sys_types in customdata header rather than stdint directly.Campbell Barton
2011-12-24OSX/gcc-4.6, fix for typedef uin64_tJens Verwiebe
2011-12-24replace u_int64_t with cc99's uint64_t as suggested by Nicholas Bishop.Campbell Barton
2011-12-24change customdata mask from an 'unsigned int' to an 'u_int64_t', since BMesh ↵Campbell Barton
branch has run out of bits
2011-12-19svn merge ^/trunk/blender -r42680:42722Campbell Barton
2011-12-19Fix a bug in CustomData_duplicate_referenced_layer(_named) functions: ↵Bastien Montagne
MEM_dupallocN does not work with complex layers like CD_MDEFORMVERT ones, so rather use copy func when available.
2011-12-07added mesh_calc_normals_ex() which is mesh_calc_normals() with an option to ↵Campbell Barton
skip recalculating the vertex normals (only calculate poly/face normals instead). also removed unneeded allocation of face normals. otherwise no functional change.
2011-12-05manual sync with trunk - pulling in changes where the issues are not bmesh ↵Campbell Barton
spesific - some merges added lines in multiple times - removed some NULL checks that were only in bmesh - enable cycles by default (was disabled because it used not to work) - make formatting match
2011-12-05syncing some minor formatting edits from bmesh branch.Campbell Barton
2011-12-01Fix for [#29467] Selection of active vertex color layer doesn't workAndrew Wiggin
Need to push active layer indices from loops & polys to faces again after tesselations
2011-11-11svn merge -r41722:41723 ^/trunk/blenderCampbell Barton
2011-10-28Merge with trunk r41342Miika Hamalainen
2011-10-24svn merge ^/trunk/blender -r41226:41227 .Campbell Barton
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-14svn merge ^/trunk/blender -r40890:40950Campbell Barton
2011-10-14Merge with trunk r40991Miika Hamalainen
2011-10-14Dynamic Paint:Miika Hamalainen
* Fix: Wave "timescale" also changed simulation behavior. Now different timescale values will lead to nearly identical results, just slower or faster. * Added "Displace Factor" setting for vertex displace surfaces. You can use it to adjust final displace strength or use negative values to paint bumps. * Added clamp/map value to wave image sequence output settings. * RNA description tweaking. * General code tweaking.
2011-10-10header cleanup (no functional changes)Campbell Barton
2011-08-07change TODO -> BMESH_TODO if only on bmesh branchHoward Trickey
2011-05-11set many vars & functions as static,Campbell Barton
also commented invalid pin theme alpha assignment so bmesh branch builds with -Werror
2011-05-10=bmesh= glsl drawing in editmode works again, also fixed some minor ↵Joseph Eagar
customdata bugs
2011-02-27merge with/from trunk at r35190Joseph Eagar
2011-02-18doxygen: blenkernel under core as module.Nathan Letwory
2011-01-02New customdata layer callback: validateSergey Sharybin
Used to validate displacement allocation size after face copying to match face vertex and displacement corners count.
2010-12-03Enabled GCC -Wwrite-strings warning for CMake and replaced many 'char's for ↵Campbell Barton
'const char's,. Only one functional change where Transform orientations passed "" to BIF_createTransformOrientation() which could then have the value written into.
2010-11-17use 'const char *' by default with RNA functions except when the value is ↵Campbell Barton
flagged as PROP_THICK_WRAP. Also use const char in many other parts of blenders code. Currently this gives warnings for setting operator id, label and description since these are an exception and allocated beforehand.
2010-10-06COLLADACOLLADA exporter: split geometry export into own files.Nathan Letwory
2010-09-07merge from trunk at r31523Joseph Eagar
2010-08-24- move more active properties into their collections:Campbell Barton
scene.active_keying_set --> scene.keying_sets.active ...same for active_uv_texture. active_vertex_color, active_keyconfig, - move mesh.add_uv_layer() and mesh.add_vertex_color() into their collections also have them return the newly created layer and dont set the layer active. uvtex = mesh.uv_layers.new(name) vcol = mesh.vertex_colors.new(name)
2010-07-19part 1 of merge from trunk at r30358; it compiles, but doesn't link quite yet :)Joseph Eagar
2010-06-01Fix #22239: external btx won't load.Brecht Van Lommel
2010-04-11Solidify ModifierCampbell Barton
- vertex normals were not being flipped (though faces are) - rim faces didnt influence edge vertex normals apply solidify on top of solidify modifier now works correctly
2010-03-22spaces -> tabs, (4 spaces == 1 tab, only for white space preceding text)Campbell Barton
2010-03-09merge with trunk at r27259 and commit of a patch by anthony jones to fix ↵Joseph Eagar
msvc (though further work may be needed because changes made by the merge