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
2019-11-24Cleanup: doxygen commentsCampbell Barton
Also correct some outdated symbol references, add missing 'name' commands.
2019-09-05Cleanup: clang-formatCampbell Barton
2019-08-30Fix BLI_array macro so can use BLI_strict_flags.h.Howard Trickey
Was doing int comparision against size_t, so added casts.
2019-04-17ClangFormat: apply to source, most of internCampbell Barton
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
2019-02-18doxygen: add newline after \fileCampbell Barton
While \file doesn't need an argument, it can't have another doxy command after it.
2019-02-06Cleanup: remove redundant doxygen \file argumentCampbell Barton
Move \ingroup onto same line to be more compact and make it clear the file is in the group.
2019-02-01Cleanup: remove redundant, invalid info from headersCampbell Barton
BF-admins agree to remove header information that isn't useful, to reduce noise. - BEGIN/END license blocks Developers should add non license comments as separate comment blocks. No need for separator text. - Contributors This is often invalid, outdated or misleading especially when splitting files. It's more useful to git-blame to find out who has developed the code. See P901 for script to perform these edits.
2019-01-26Cleanup: blank lines over doxy headersCampbell Barton
2018-03-14Cleanup: rename BLI_array_count -> lenCampbell Barton
Match naming convention used everywhere else. Count should only be used when this isn't directly accessible.
2018-02-01Cleanup: rename BLI_*_empty() -> clear()Campbell Barton
Consistent with other BLI API's
2017-07-29Cleanup: multistatement-macros warningCampbell Barton
2017-06-12Cleanup: indentation, long linesCampbell Barton
2015-02-14Refactor array_utils out of BLI_arrayCampbell Barton
BLI_array.h is for resizing array macros, where as array_utils can operate on any arrays.
2014-09-28Correct recent error in BLI_array_append_retCampbell Barton
2014-09-28BLI_array: add BLI_array_append_retCampbell Barton
returns the newly appended item. also make make it so reserve doesn't have to grow then shrink the array size.
2014-08-17BLI_array: utility function for searching an arrayCampbell Barton
2014-08-14Remove MSVC2008 workaroundCampbell Barton
2014-07-11BLI_array: avoid mixing terms count/lengthCampbell Barton
2014-06-26BLI_array: avoid accidental assignment to BLI_array_countCampbell Barton
2014-06-26Fix BLI_array_staticdeclare sizeCampbell Barton
2013-09-12code cleanup: headers - doxy comments.Campbell Barton
2013-08-14utility functions to reverse and wrap arrays.Campbell Barton
2013-07-28use '_exec' suffix for operator execute callbacks, also picky change to ↵Campbell Barton
sizeof() use in BLI_array.h
2013-07-28move alloca define into its own header since its not related to BLI_arrayCampbell Barton
2013-07-28bmesh: skip error checks when building in release mode (minor speedup),Campbell Barton
also more strict use of BLI_array_declare(), only allow after array is declared.
2013-05-26code cleanup: quiet pedantic warning in array macro.Campbell Barton
2013-04-07Fix for [#34898] Typo in error message of mathutils.VectorThomas Dinges
* Also fixed some more cases of "more then" -> "more than".
2013-01-21code cleanup: style & warnings.Campbell Barton
2013-01-20minor change r53918 was supposed to resolve.Campbell Barton
2013-01-20correction for msvc2008Campbell Barton
2013-01-19code cleanup: BLI_array.h's BLI_array_grow_items macro was unmanageable.Campbell Barton
moved the main re-alloc logic into a C function.
2012-12-21make Node.links return a tuple, this may you can't do socket.links.append() ↵Campbell Barton
by mistake. removed RNAMeta mixin class since you cant register subclasses. also some minor code cleanup
2012-12-13add include so alloca() is found on mingw.Campbell Barton
2012-12-11fix for building with msvcCampbell Barton
2012-12-11replace BLI_array_fixedstack_declare with() new macro BLI_array_alloca() ↵Campbell Barton
which uses stack memory always and doesn't need to be freed explicitly.
2012-11-26fix [#33305] Bevel tool crashes Blender if the number of segments exceeds 28Campbell Barton
this was infact a general bug in BLI_array_grow_items(), surprising we didnt run into it before. - growing the array for the first time would use the static var even if it wasn't big enough.
2012-08-12style cleanupCampbell Barton
2012-08-09code cleanup: ensure macros require ';' endingsCampbell Barton
2012-06-25style cleanupCampbell Barton
2012-05-13code cleanup: header cleanup and remove some duplicate defines.Campbell Barton
2012-04-28style cleanup: format 'for' loop macros the same as for loops, some renaming ↵Campbell Barton
to BLI_array macros.
2012-04-26code cleanup: bmesh comments/todos, no functional changes.Campbell Barton
2012-04-23code cleanup: better use of BLI_array_* (grow in larger steps where ↵Campbell Barton
possible), include BMO_iter_new in for loops.
2012-04-07code cleanup: no functional changesCampbell Barton
- memset(..., -1) is used incorrectly even though it worked: MOD_solidify.c - thanks Halley from IRC for noticing this. use fill_vn_i() instead. - quiet warnings in editmesh_slide.c - cleanup comments in bmesh and some other minor comment additions.
2012-03-01Spelling CleanupCampbell Barton
2012-02-19Change texface draw to always use glShadeModel(GL_SMOOTH), with texface draw.Campbell Barton
without this each face would get a solid color, this is the same method used in object mode. also copy BLI_array.h fix from bmesh branch.
2012-01-23BLI_array_reserve from bmesh.Campbell Barton
2011-12-28merge bleshes BLI_array header lib into trunk.Campbell Barton