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-29default blend file name setting (untitled.blend) length check wasn't correct,...Campbell Barton
2013-08-29micro-optimization, avoid checking is_power_of_2_i once in power_of_2_max_iCampbell Barton
2013-08-28remove callback BLI_localErrorCallBack from scanfill, was here for years and ...Campbell Barton
2013-08-28scanfill curves, ngons, masks had their own memarena code and would allocate ...Campbell Barton
2013-08-27Get rid of madness about fnmatch: BLI_fnmatch did not do the OS checks, they ...Bastien Montagne
2013-08-27ghash/bli-listbase edits, rename BLI_ghash_pop -> BLI_ghash_popkey (since it ...Campbell Barton
2013-08-26internal changes to ghash/edgehash, reorganize to split out resizing the hash...Campbell Barton
2013-08-26add some safety checks in debug mode to ensure sets/hashes aren't confused.Campbell Barton
2013-08-26minor changes to edgehassh/ghashCampbell Barton
2013-08-26replace hashes with sets where possible.Campbell Barton
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