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-20add BLI_memarena_clear function to reset a memarena, keeping the last allocat...Campbell Barton
2013-08-20add is_finite_v# functions, use bool'sCampbell Barton
2013-08-20Get rid of PATH_MAX in Ghost System X11Sergey Sharybin
2013-08-19code cleanup: confirm include guards to our conventionCampbell Barton
2013-08-19Mistake in revious PATH_MAX commit, sorry!Sergey Sharybin
2013-08-19Attempt to fix compilation error of sort.cSergey Sharybin
2013-08-19Fix compilation error on platforms where PATH_MAX is not definedSergey Sharybin
2013-08-19Speedup for guarded allocatorSergey Sharybin
2013-08-19Use reentrant qsort() in particle codesSergey Sharybin
2013-08-19Added check for address being freed by mempool freeSergey Sharybin
2013-08-19Utility benchmarking macrosSergey Sharybin
2013-08-18Fix a few compiler warnings reported by clang.Brecht Van Lommel
2013-08-18add hash function BLI_ghash_assign, BLI_edgehash_assignCampbell Barton
2013-08-18minor api cleanup for ghash/edgehashCampbell Barton
2013-08-18add assert for hashes if an existing element is ever inserted into a ghash/ed...Campbell Barton
2013-08-17add linklist stack macros, use where over allocating an array was previously ...Campbell Barton
2013-08-17change CHECK_TYPE_INLINE macro not to add the pointer in the macro.Campbell Barton
2013-08-16new bmesh queries BM_face_exists_overlap, BM_face_exists_overlap_subsetCampbell Barton
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