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-01-08Remove raskter librarySergey Sharybin
it's no longer used by any of the parts of Blender.
2016-01-04Remove SCons building systemSergey Sharybin
While SCons building system was serving us really good for ages it's no longer having much attention by the developers and started to become quite a difficult task to maintain. What's even worse -- there started to be quite serious divergence between SCons and CMake which was only accumulating over the releases now. The fact that none of the active developers are really using SCons and that our main studio is also using CMake spotting bugs in the SCons builds became quite a difficult task and we aren't always spotting them in time. Meanwhile CMake became really mature building system which is available on every platform we support and arguably it's also easier and more robust to use. This commit includes: - Removal of actual SCons building system - Removal of SCons git submodule - Removal of documentation which is stored in the sources and covers SCons - Tweaks to the buildbot master to stop using SCons submodule (this change requires deploying to the server) - Tweaks to the install dependencies script to skip installing or mentioning SCons building system - Tweaks to various helper scripts to avoid mention of SCons folders/files as well Reviewers: mont29, dingto, dfelinto, lukastoenne, lukasstockner97, brecht, Severin, merwin, aligorith, psy-fi, campbellbarton, juicyfruit Reviewed By: campbellbarton, juicyfruit Differential Revision: https://developer.blender.org/D1680
2013-03-22code cleanup: use NULL rather then 0 for pointers, and make vars static ↵Campbell Barton
where possible. also found unintentionally defined enum/struct variables that where only meant to be defining the type.
2012-12-17Added GPL header to sconscripts!Bastien Montagne
Also changed shebang to '#!/usr/bin/env python', this is more portable across unixes...
2012-10-27style cleanupCampbell Barton
2012-09-20code cleanup: remove unused macros, commet some which may be useful later - ↵Campbell Barton
or good to keep for completeness. quieted some warnings and add flags -Wmissing-include-dirs and -Wno-div-by-zero to cmake/gcc
2012-09-16code cleanup: quiet warnings for gcc's -Wundef, -Wmissing-declarationsCampbell Barton
2012-09-16code cleanup: remove unused structs and also some style cleanup.Campbell Barton
2012-09-16remove unused parts of raskter module.Campbell Barton
2012-09-15code cleanup: modify DO_INLINE define to not use __inline with mingwCampbell Barton
make RegisterBlendExtension_Fail a static func u
2012-09-15quiet -Wmissing-prototypes warnings, and enable this warning by default for ↵Campbell Barton
C with gcc. helps for finding unused functions and making functions static, also did some minor code cleanup.
2012-07-28Blender now compiles with recent clangSergey Sharybin
2012-07-17code cleanup: spellingCampbell Barton
2012-07-10rename raskter kdtree files to be less genericCampbell Barton
2012-07-10fix: inline to __inline in raskter.c for msvcPeter Larabell
2012-07-10some code refactors in raskter.c to sync it with build where mask tiling is ↵Peter Larabell
being developed. Also adds a bit more mask tiling code.
2012-07-10fix warnings/errors in recent raster commit.Campbell Barton
2012-07-10updating raskter to support tiles compositor. this commit puts in some ↵Peter Larabell
groundwork code to support tiles's pixel processor
2012-07-05fix for error in own recebt commit, broke mask feathering. Campbell Barton
2012-07-04fix for crash with zero area mask.Campbell Barton
2012-07-04style cleanupCampbell Barton
2012-06-24Mark some utility functions as static to avoid namespace conflictsSergey Sharybin
and make export symbol table smaller.
2012-06-20style cleanupCampbell Barton
2012-06-14comment unused varsCampbell Barton
2012-06-14simple assignments added to pre-processor temporary section of function to ↵Peter Larabell
avoid unused argument compiler warnings.
2012-06-13add Anti-Aliasing (very rough draft algorithm, NOT FINAL version) to raskter ↵Peter Larabell
lib. Code is still quite messy but will be replaced when final algo comes in anyway.
2012-06-08typo/style editsCampbell Barton
2012-06-08- remove redundant NULL checks from mallocn's local linked list functions.Campbell Barton
- minor changes to warning cleanup.
2012-06-05style cleanupCampbell Barton
2012-06-04include cleanup, also raskter wasn't building on osxCampbell Barton
2012-06-04raskter rasterizer by Pete Larabell, from tomato branchCampbell Barton