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 (Expand)Author
2013-08-16add support for mempool/linklist functions.Campbell Barton
2013-08-14utility functions to reverse and wrap arrays.Campbell Barton
2013-08-13use __builtin_nanf with gcc and clang.Campbell Barton
2013-08-13Moved NAN_FLT define to BLI_math, this may come in useful.Lukas Toenne
2013-08-11use 'greater/less then or equal to' operators rather then adding 1.Campbell Barton
2013-08-07code cleanup: more confusion with 0/NULL/falseCampbell Barton
2013-08-07code cleanup: more zero as NULL pointers.Campbell Barton
2013-08-06Add assert to mul_v3_m3v3 and mul_v2_m3v3,Sergey Sharybin
2013-08-06use gcc malloc attribute for low level allocation functions, prevents gcc fro...Campbell Barton
2013-08-05Fix build warnings with clang and UNUSED_RESULT_ATTR (attribute declaration m...Brecht Van Lommel
2013-08-04mempool api cleanup: differentiate mempool functions that allocate a pointer ...Campbell Barton
2013-08-04avoid using MEM_reallocN_id directly, add utility macro for freeing.Campbell Barton
2013-08-04minor changes to BLI_heap, save some CPU cycles.Campbell Barton
2013-08-03skip BLI_STATIC_ASSERT for Coverity builds (caused parse error)Campbell Barton
2013-08-03fix for [#36260] 2,300 Objects Makes Blender UnresponsiveSv. Lockal
2013-08-01code cleanup: remove unused functionsCampbell Barton
2013-08-01fix for BLI_ghash_clear from Sv. Lockal (lockal)Campbell Barton
2013-07-30function renaming for own recently added BLI_math functions, suggested by Bre...Campbell Barton
2013-07-28add inline functions getting a single axis from mul_m3_v3()Campbell Barton
2013-07-28use '_exec' suffix for operator execute callbacks, also picky change to sizeo...Campbell Barton
2013-07-28add BLI_alloca.h, missed in previous commitCampbell Barton
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
2013-07-28remove unneeded NULL checks, add one for give_matarar() return value.Campbell Barton
2013-07-27code cleanup: remove unused codeCampbell Barton
2013-07-27code cleanup: remove redundant NULL checks and avoid writing to the source st...Campbell Barton
2013-07-26fix for error in BLI_buffer_declare_static(), the stack variable wasn't the r...Campbell Barton
2013-07-26fix [#36282] Spin error with non uniform scaleCampbell Barton
2013-07-26optimization: call one bmesh operator for rotate (not 3).Campbell Barton
2013-07-25add api function BLI_path_append to add to a path (and ensure a seperator), r...Campbell Barton
2013-07-23use binary prefix for file sizes (old todo).Campbell Barton
2013-07-23replace use of strcat() where the string offset is known.Campbell Barton
2013-07-23remove the pointer from BLI_bitmap's typedef, Campbell Barton
2013-07-21code cleanup: de-duplicate BLI_ghashIterator_new/init and disable unused text...Campbell Barton
2013-07-21code cleanup: add break statements in switch ()'s, (even at the last case).Campbell Barton
2013-07-20misc editsCampbell Barton
2013-07-20revert r58419. caller should do NULL check here.Campbell Barton
2013-07-20BGE fix [#36223] Strange page fault of "Game" actuatorDaniel Stokes
2013-07-19style cleanup: braces/indentationCampbell Barton
2013-07-19style cleanup: switch statements, include break statements within braces & in...Campbell Barton
2013-07-19code cleanup: use __linux__ define over linuxCampbell Barton
2013-07-19optimization: avoid extra loop in BLI_mempool_destroy(). free the list inline.Campbell Barton
2013-07-19code cleanup: simplify BLI_parent_dir using BLI_join_dirfileCampbell Barton
2013-07-19code cleanup: avoid sqrt in isect_seg_seg_v2_pointCampbell Barton
2013-07-16fix for checking char arrays against NULL, instead check their first characte...Campbell Barton
2013-07-16correct own incorrect check bmesh edgerin subdivide, also add missing break i...Campbell Barton
2013-07-16revert part of own commit r58254, utf8 isnt stepping by 1 always so use less-...Campbell Barton
2013-07-15correct placement of debug memset() for DEBUG_STRSIZECampbell Barton
2013-07-15fix for error in string copyCampbell Barton
2013-07-15debug option (off by default), for BLI_string to help find incorrect sizes be...Campbell Barton