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
2014-11-28Cleanup: unused headersCampbell Barton
2014-04-30Code cleanup: remove unused includesCampbell Barton
Opted to keep includes if they are used indirectly (even if removing is possible).
2014-04-17Code cleanup: use const for array argsCampbell Barton
2013-12-22Style Cleanup: remove preprocessor indentation (updated wiki style guide too)Campbell Barton
2013-12-20Code Cleanup: styleCampbell Barton
2013-12-19Fix T37869: vertex paint + wireframe draw mode + smoke domain did not draw ↵Brecht Van Lommel
correct.
2013-12-18Fix T37834: smoke opengl render not delivering correct alpha channel.Brecht Van Lommel
2013-12-18View3D: small optimization for smoke drawingCampbell Barton
2013-09-04move timeit macros into their own include, since they are only used for ↵Campbell Barton
testing and unrelated to PIL_time.h typical use.
2013-08-06quiet double-promotion warnings, change octree.cpp to use a float (vector ↵Campbell Barton
accumulated into a float anyway)
2013-08-01Fix [#36265]: Smoke doesn't work if domain object has negative scale.Miika Hamalainen
2013-05-08code cleanup: remove references to BLI_rand.hCampbell Barton
2013-03-21code cleanup: use bool where values are true/false, for view3d and related ↵Campbell Barton
functions.
2013-02-04drawvolume was timing drawing unnecessarily,Campbell Barton
replace local defined timing functions with calls to TIMEIT_* macros from PIL_time.h and disable by default.
2012-12-21replace MIN/MAX 3,4 with inline functionsCampbell Barton
2012-12-16replace strcpy with BLI_strncpy or memcpy when the size is known.Campbell Barton
2012-10-11style cleanup:Campbell Barton
also add helper makefile targets: * tbz - makes a tar.bz2 of an svn export * test_style_qtc - outputs style checks in qtc task format.
2012-10-10quiet compiler warnings from recent merge.Campbell Barton
2012-10-10Google Summer of Code project: "Smoke Simulator Improvements & Fire".Daniel Genrich
Documentation & Test blend files: ------------------ http://wiki.blender.org/index.php/User:MiikaH/GSoC-2012-Smoke-Simulator-Improvements Credits: ------------------ Miika Hamalainen (MiikaH): Student / Main programmer Daniel Genrich (Genscher): Mentor / Programmer of merged patches from Smoke2 branch Google: For Google Summer of Code 2012
2012-07-09style cleanupCampbell Barton
2012-07-05style cleanupCampbell Barton
2012-06-17style cleanup:Campbell Barton
also fix for building ghost test and fix double free in one of the tests
2012-05-26code cleanup: use array size and const for vector argsCampbell Barton
2012-05-25Fixed smoke 3D-view issues: Preview became invisible from certain angles if ↵Miika Hamalainen
domain size was < 1.0 and density+shading strength changed depended on domain size.
2012-05-13code cleanup: missed some min/max use of float[3], also found case of ↵Campbell Barton
DO_MIN/MAX re-reading same value from array 4 times when it can do once (use minf rather then MIN2, same for maxf)
2012-04-30- improve select grouped prefix/suffix from recent patchCampbell Barton
- added select similar direction (Y axis)
2012-04-11code cleanup: float formatting was confusing in some cases - eg: (0.,0.,0.)Campbell Barton
2012-03-26style cleanup: mostly whitespace around operatorsCampbell Barton
2012-03-06style cleanup, brackets in else/if, some indentation.Campbell Barton
2012-03-03style cleanup - use aligned * prefixed blocks for descriptive comments (was ↵Campbell Barton
already used a lot and part of proposed style guide).
2012-02-22code cleanyp - no functional changes.Campbell Barton
2012-02-20- remove some unused editmesh functions.Campbell Barton
- copy & rename EditMesh stricts for use with scanfill (remove unused members)
2012-01-19svn merge ^/trunk/blender -r43524:43530Campbell Barton
2012-01-19style edits - < 120 line widthCampbell Barton
2011-12-17svn merge ^/trunk/blender -r42660:42669Campbell Barton
2011-12-16static functions for getting power of 2 values were being copied about too ↵Campbell Barton
much, add to the BLI_math api. - is_power_of_2_i - power_of_2_min_i - power_of_2_max_i
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-11-07svn merge -r41575:41602 ^/trunk/blenderCampbell Barton
2011-11-06misc macro --> bli math lib functionsCampbell Barton
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-23svn merge ^/trunk/blender -r40389:r40390Campbell Barton
2011-09-20tag & comment unused vars with /* UNUSED */Campbell Barton
2011-09-11svn merge -r40104:40117 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-09-11minor edits / cleanup - no functional changes.Campbell Barton
- use 'const float *' and array size in some function declarations. - replace macros for BLI_math functions INPF, VECCOPY, VECADD etc. - remove unused VertRen.clip struct member. - remove static squared_dist() from 2 files, replace with BLI_math function len_squared_v3v3(). - use vertex arrays for drawing clipping background in the 3D viewport.
2011-05-09more syncing with trunk, also cleared many warnings with gcc4.6Campbell Barton
2011-02-27doxygen: blender/editors tagged.Nathan Letwory
2011-02-23doxygen: prevent GPL license block from being parsed as doxygen comment.Nathan Letwory
2011-02-13many functions in blender are not marked static but should be.Campbell Barton
most local modifier,GPU,ImBuf and Interface functions are now static. also fixed an error were the fluid modifier definition and the header didnt have the same number of args.
2011-01-07remove references to BKE_utildefines where its not needed.Campbell Barton
- move GS() define into DNA_ID.h - add BLI_utildefines as an automatic include with makesrna generated files.