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-26BKI_gset and EdgeSet api, use when hash values aren't used (reuses ghash inte...Campbell Barton
2013-08-25move doxy docs out of the ghash header into the C file.Campbell Barton
2013-08-25clearing the mempool can now keep more then a single element reserved.Campbell Barton
2013-08-25fix leak in BLI_ghash_clear(). was never freeing entries, add BLI_mempool_cle...Campbell Barton
2013-08-25code cleanup for mempool, refactor chunk initialization into a static function.Campbell Barton
2013-08-25merge mempool allocs per chunk, include the data in the BLI_mempool_chunk alloc.Campbell Barton
2013-08-25doxygen docs for ghash/edgehashCampbell Barton
2013-08-25For pointer hashing use the same method as python, it gives better distribution.Campbell Barton
2013-08-25use ints for ghash/edgehash flags, since its allocated theres not much point ...Campbell Barton
2013-08-24cloth was using edgehash not quite correctly:Campbell Barton
2013-08-24add versions of BLI_ghash_int_new, BLI_ghash_str_new, etc. that take a reserv...Campbell Barton
2013-08-24revert bucket size change (edgehash was this way for years, since r26206, gha...Campbell Barton
2013-08-24edge hash: take an arg for the guarded-malloc string (as ghash does)Campbell Barton
2013-08-24ghash and edgehash api, allow newly defined hashes to take in the size of the...Campbell Barton
2013-08-23simplify dist_to_plane_v3 and add dist_squared_to_plane_v3Campbell Barton
2013-08-23math api edits - replace point-normal form for a plane with dist_to_plane_v3()Campbell Barton
2013-08-23set function args in BLI_math_rotation as const where possible.Campbell Barton
2013-08-23modify closest_to_plane_v3 not to use point-normal form.Campbell Barton
2013-08-22add utility functions for dealing with planesCampbell Barton
2013-08-22minor internal change: isect_point_poly_v2 was assigning a value past the arr...Campbell Barton
2013-08-22set nonnull args for BLI_qsort_rCampbell Barton
2013-08-22ghash/edgehash flag wasn't being initialized for new hashes. also init vars i...Campbell Barton
2013-08-21rename recently added BLI_ghash_assign() -> BLI_ghash_reinsert()Campbell Barton
2013-08-21style cleanup: also use ARRAY_HAS_ITEM macro for mempool checkCampbell Barton
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-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-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-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-11use 'greater/less then or equal to' operators rather then adding 1.Campbell 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-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-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