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-09-01Move GCC attributes into a centraized definesSergey Sharybin
2013-09-01kd-tree,Campbell Barton
2013-09-01Mingw/Windows Compiling Fix:Joshua Leung
2013-09-01use strict flags for lasso, boxpack, gsqueue and quadric's.Campbell Barton
2013-09-01use strict flags for scanfill, also replace shorts with unsigned shorts and i...Campbell Barton
2013-09-01move strict compiler checks into a header so its easier to manage in one plac...Campbell Barton
2013-08-31tweak mempool loop comparisons when we know there is no chance for skipping p...Campbell Barton
2013-08-31Simplify line/plane intersection, add line_plane_factor_v3().Campbell Barton
2013-08-31remove unnecessary check in BLI_mempool_iterstep and add doxygen comments to ...Campbell Barton
2013-08-31mempool internal change, use unsigned ints where possible (less overhead),Campbell Barton
2013-08-30Some knife fixes. Avoids duplicating verts; better handling of cut-through or...Howard Trickey
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-24when the size of an edgehash is known or can be guessed,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-24Fix state losses for recursive outliner trees (e.g. datablocks editor)Sv. Lockal
2013-08-23patch to add backkbacks for game engine start/end,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