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 (Collapse)Author
2016-02-13BLI_bitmap: add flip macroCampbell Barton
2015-01-13Cleanup: fixes for building with recent clangCampbell Barton
2014-11-25BLI_bitmap: add allocation from a MemArena.Bastien Montagne
2014-11-23Fix BLI_Bitmap - was not usable in BKE area (strict compile flags).Bastien Montagne
2014-10-14BLI_bitmap: add a macro to set/clear the whole bitmap at once.Bastien Montagne
2014-06-13BLI_bitmap: rename macrosCampbell Barton
- BLI_BITMAP_SET -> BLI_BITMAP_ENABLE - BLI_BITMAP_CLEAR -> BLI_BITMAP_DISABLE - BLI_BITMAP_GET -> BLI_BITMAP_TEST - BLI_BITMAP_MODIFY -> BLI_BITMAP_SET
2014-06-13BLI_bitmap: typecheck macoCampbell Barton
2014-06-05Fix T40423: UV Editing 'Draw Other Objects' fails with CyclesCampbell Barton
2013-10-11use BLI_bitmap for editmesh selection buffer to save some memory.Campbell Barton
2013-09-12code cleanup: headers - doxy comments.Campbell Barton
2013-09-09enable strict flags for mesh_evaluate.cCampbell Barton
2013-07-23remove the pointer from BLI_bitmap's typedef, Campbell Barton
hides that an arg passed is really an array which may be modified by other functions.
2012-05-13code cleanup: header cleanup and remove some duplicate defines.Campbell Barton
2012-05-05code cleanup: function naming for BLI functions.Campbell Barton
2012-03-04style cleanup / comment formatting for bli/bke/bmeshCampbell Barton
2012-02-23Move PBVH bitmap to separate header in blenlib.Nicholas Bishop
The implementation was also changed in a couple ways: use unsigned integers as its base type rather than unsigned chars, and uses macros rather than functions. (These could be changed to inline functions.) Currently it is still only used during PBVH building, but now it's accessible elsewhere.