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-08-26Fix over creation of cache files handles (leading to memory leaks).Kévin Dietrich
Multiple threads could create multiple handles for the same cache file, so protect handle creation with a mutex, to make sure only one is created.
2016-07-21Cleanup: warningsCampbell Barton
2016-07-18CMake: correct py-module on OSXCampbell Barton
2016-07-14Make --debug-all include --debug-cycles and --debug-libmvSergey Sharybin
2016-07-14CMake: per-target CFLAG & CXXFLAG supportCampbell Barton
Applying cflags globally can be problematic especially with extern, intern libs. Now flags from target named will be used when defined, allowing for developers to define flags for modules they maintain. Convention is CMAKE_CFLAGS_${UPPERCASE_TARGET_NAME}, (CXXFLAGS for C++). eg: CMAKE_CFLAGS_BF_BLENDER, CMAKE_CFLAGS_MAKESDNA, CMAKE_CXXFLAGS_CYCLES_KERNEL On Linux run `make help` for full list of names, MSVC shows these in the solution.
2016-07-12writefile: reuse SDNA between writesCampbell Barton
Avoids decoding the SDNA string every undo step.
2016-06-30CMake: list buildinfo.h as buildinfo.cmake's outputCampbell Barton
Keep the fake header to ensure we always run.
2016-06-25CMake: exclude gitignore & arcconfig for addonsCampbell Barton
These files were included in releases
2016-06-25Exclude obsolete static pythonlibs from installJens Verwiebe
2016-06-24Avoid memory leaks on exit during argument parsingCampbell Barton
Exiting Blender during argument parsing would leak memory (tests, documentation generation, utilities). While harmless, it hides real leaks which should be resolved.
2016-06-07GPU: make using the glsl basic-shader a flagCampbell Barton
This allows for it to be more easily tested.
2016-06-04CMake, minor changes to make Visual studio 2015 use a compatible numpy andMartijn Berger
the standard cmake CUDA/NVCC arguments flag allowing 2015 build to use msvc 2013 for cuda
2016-06-02Minor changes to help textCampbell Barton
D2040 by @Blendify, also move 'Experimental Features' above more general help text.
2016-05-18Cleanup: cmake, indentation, line lengthCampbell Barton
2016-05-11Cleanup: unused win32 headersCampbell Barton
2016-05-10CMake: optional date/time overrides for reproducible buildsCampbell Barton
2016-04-28Python: install pyconfig.h on OSX, needed for PIPCampbell Barton
2016-04-25Refactor BKE_blender into separate headersCampbell Barton
- BKE_blender_version.h (only version defines & versionstr). - BKE_blender_copybuffer.h (currently only used for view3d copy/paste). - BKE_blender_undo.h (global undo functions). - BKE_blendfile.h (high level blend file read/write API).
2016-04-12Missed last commitCampbell Barton
2016-04-06Correct error checking for wrong frame rangeCampbell Barton
2016-04-06Cleanup: arg docstringsCampbell Barton
2016-04-06Render frame arg parsing, list and range supportCampbell Barton
Support a comma separated list of frames, as well as frame ranges using the '..' separator. eg: `blender my.blend --render-frame 1,2,10..40,100..200`
2016-03-31Remove the obsolete windows launcherMartijn Berger
2016-03-31CMAKE disable building the windows launcher, fix type in delayloading of ↵Martijn Berger
debug dll
2016-03-31CMAKE / msvc openmp, delay loading of openmp dll so we can set environmentMartijn Berger
variable before it is loaded
2016-03-29Add license text for OCIO configurationSergey Sharybin
2016-03-11Include requests' cacert.pem fileSybren A. Stüvel
This allows us to verify certificates of HTTPS connections, which is mandatory for logins like on Blender ID. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1845
2016-03-03Correct image format args (remove 'MOVIE')Campbell Barton
2016-03-03Cleanup: comments for creator_args & line lengthCampbell Barton
2016-03-02Cleanup: style, and --help editsCampbell Barton
2016-02-29Include modules needed for Python to run pipCampbell Barton
This means Python developers can install pip using Blender's bundled Python.
2016-02-27Cleanup split creator.cCampbell Barton
creator.c was getting hard to follow. - Split off argument and signal handling into own files. - Move docstrings next to functions (to keep docs grouped with code).
2016-02-18Actually only remove sqlite dllMartijn Berger
2016-02-18Revert "Fix: T46526, Do not try to install sqlite3.dll anymore as we link it ↵Martijn Berger
statically into pythons _sqlite" This reverts commit a8e6b633c9f54f0948a0b9a47534bc38ac95889f.
2016-02-18Fix: T46526, Do not try to install sqlite3.dll anymore as we link it ↵Martijn Berger
statically into pythons _sqlite
2016-02-15CMake: install python as an executableCampbell Barton
2016-02-11Revert "CMake: remove ".svn" checks"Campbell Barton
This reverts commit 00fbc326e31b67c41a023ef9a23bc44ed965268d. Still needed for svn <1.8
2016-02-11CMake: remove ".svn" checksCampbell Barton
2016-02-07move windows out of source dirCampbell Barton
2016-02-01CMake: Attempt to fix wrong installation folder for requests on OSXSergey Sharybin
2016-01-26Cleanup: minmac -> minmax & RE_render_ext namingCampbell Barton
Use more conventional API word-ordering for RE_render_ext
2016-01-24Docs: minor edits to code commentsCampbell Barton
2016-01-15Fix crash w/ scripts run from the command line that load filesCampbell Barton
Also refactor context backup/restore into functions.
2016-01-05CMake: copy python DLL for MinGW buildsCampbell Barton
2016-01-04Move Libmv from extern/ to intern/Sergey Sharybin
Logically it is intern library since being mainly developed by 1.5 blender guys.
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
2015-12-31Fix wrong format used in the recent python exit code commitSergey Sharybin
2015-12-31Command line argument to exit on Python errorsCampbell Barton
eg: blender -b --python-exit-code 1 --python script.py --render-anim This causes blender not to continue parsing command line arguments and exit if the script raises an exception.
2015-12-31Add parse_int_strict_range utility for command line inputCampbell Barton
2015-12-31Cleanup: Py API namingCampbell Barton
Use BPY_execute_* prefix for all Python execution commands