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-05-20code cleanup:Campbell Barton
- style - multi-line ifs move braces onto new lines. - iterators - convert some to macros, other split up and move brace.
2012-05-12style cleanup: mostly whitespace in rnaCampbell Barton
2012-05-07Style cleanup: displist moduleSergey Sharybin
2012-05-07Style cleanup: rename BKE_metaball* to BKE_mball -- mball is more commonly ↵Sergey Sharybin
used term in Blender
2012-05-06code cleanup: naming - BKE_mesh_*Campbell Barton
2012-05-05code cleanup: naming - pose/armature/image Campbell Barton
also use ..._find_name(..., name) rather then ..._find_named(..., name) --- both were used.
2012-05-05code cleanup: function naming, use BKE_*type* prefix.Campbell Barton
2012-04-30Cycles: support for motion vector and UV passes.Brecht Van Lommel
Most of the changes are related to adding support for motion data throughout the code. There's some code for actual camera/object motion blur raytracing but it's unfinished (it badly slows down the raytracing kernel even when the option is turned off), so that code it disabled still. Motion vector export from Blender tries to avoid computing derived meshes when the mesh does not have a deforming modifier, and it also won't store motion vectors for every vertex if only the object or camera is moving.
2012-04-29style cleanup: missed these from previous cleanupCampbell Barton
2012-04-29style cleanup: function calls & whitespace.Campbell Barton
2012-04-28Code and style cleanup in own modules in BKE and also mball moduleSergey Sharybin
- Make sure functions are named in way BKE_<object>_<action> (same way as RNA callbacks) - Make functions which are used by mball.c only static and remove their prototypes from public header file. Further cleanup is coming.
2012-04-23- fix for python freeing its own bmesh clearing the global mirror cache.Campbell Barton
- fix for own mistake (Ctrl+T didnt set beauty peroperty). - remove bad level includes in bmesh.
2012-03-25inset tool now works better when insetting around corners - the 2 faces ↵Campbell Barton
normals are now used to calculate the inset edge vector if the faces are different and not planer.
2012-03-24style cleanup: follow style guide for formatting of if/for/while loops, and ↵Campbell Barton
else if's
2012-03-18Code style edits (mostly spliting long lines, and removing trailing spaces).Bastien Montagne
Note about long lines: I did not touch to two pieces of code (because I don’t see any way to keep a nicely formated, compact code, with shorter lines): * The node types definitions into rna_nodetree_types.h * The vgroup name functions into rna_particle.c
2012-03-11style cleanup, also remove unused externs.Campbell Barton
2012-03-11fix for debug assignment left in from own commit r44778Campbell Barton
also removed private face normal update functions - they were same as public.
2012-03-09style cleanup: comment blocksCampbell Barton
2012-03-06Code cleanup in rna files (huge, higly automated with py script).Bastien Montagne
Addresses: * C++ comments. * Spaces after if/for/while/switch statements. * Spaces around assignment operators.
2012-02-21Fix #30270, #30265: cycles not displaying textured objects, and not renderingBrecht Van Lommel
text/curve objects after the bmesh merge. Also removed a debug print.
2012-02-08svn merge ^/trunk/blender -r43934:43976Campbell Barton
2012-02-07Fix #30089: crash with cycles viewport rendering while in text edit mode.Brecht Van Lommel
Cause was Object.to_mesh(), which could cause invalid memory access when calling it on text objects in edit mode.
2012-01-25svn merge ^/trunk/blender -r43676:43685Campbell Barton
2012-01-25found a bug by accident.Campbell Barton
- bugfix for setting string defaults in rna functions (incorrect pointer use and would copy past string length). - Object.dm_info was setting a default when it didnt need to.
2012-01-19svn merge ^/trunk/blender -r43524:43530Campbell Barton
2012-01-19size for static string was too small, we should really have dynamic sized ↵Campbell Barton
strings to rna functions.
2012-01-19svn merge ^/trunk/blender -r43482:43524Campbell Barton
2012-01-19debug function DM_debug_info / DM_debug_print, with access from pythonCampbell Barton
through Object.dm_info('SOURCE/DEFORM/FINAL') this is to help tracking down issues with modifiers where loosing data layers between modifiers can cause bugs, also to helo with comparing bmesh/trunk's modifier stack.
2011-12-19svn merge ^/trunk/blender -r42680:42722Campbell Barton
2011-12-18- remove rna access to deprecated sequencer attributes x/y offset & zoom.Campbell Barton
- Object.to_mesh was still using deprecated colbits variable (object material wouldnt work for any material after 16) - dont set colbits when setting material slot anymore.
2011-12-16svn merge ^/trunk/blender -r42617:42655Campbell Barton
2011-12-15vertex group changes,Campbell Barton
use more api functions more (some vertex group editing functions were copied about), also make some functions int oapi calls. - remove defgroup_find_index(), use BLI_findlink instead since they both work the same way. - move static function getNearestPointOnPlane() to BLI_math api function closest_to_plane_v3() - ED_vgroup_give_parray() added option to return an array where unselected verts are NULL (simplifies code & works for lattice when it didn't before). - more consistant error checking of ob->actdef.
2011-12-05svn merge ^/trunk/blender -r42426:42439Campbell Barton
2011-12-05Fix #29507: cycles rendering of metaball animations not working.Brecht Van Lommel
2011-11-15svn merge -r41779:41847 ^/trunk/blenderCampbell Barton
2011-11-14Object.to_mesh() for metaball objects now only return a mesh for the ↵Brecht Van Lommel
basis/mother metaball. This should fix duplicated export of metaballs for python exporters and cycles.
2011-11-10svn merge -r41655:41715 ^/trunk/blender --- this is the real cycles merge, ↵Campbell Barton
needs some edits to cycles its self before cycles will build
2011-10-25Cycles: svn merge -r41225:41232 ^/trunk/blenderBrecht Van Lommel
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-09-21svn merge -r40295:40367 ^/trunk/blenderCampbell Barton
2011-09-19Cycles: svn merge -r40266:40358 ↵Brecht Van Lommel
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2011-09-19/blender/makesrna: Removed final points in UI strings and messages.Bastien Montagne
Plus a few splits of very long lines…
2011-08-16Cycles: svn merge -r39132:39457 ↵Brecht Van Lommel
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2011-08-07Cycles: svn merge -r37957:39132 ↵Brecht Van Lommel
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2011-08-05https://svn.blender.org/svnroot/bf-blender/trunk/blender, in sync with trunk nowCampbell Barton
2011-08-04fix for building with clang. makesrna wasnt linking with sqrtCampbell Barton
2011-07-29svn merge -r38718:38804 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-07-26correct misc warningsCampbell Barton
2011-07-26svn merge -r38500:38600 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton