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
2018-11-23Cycles: Improved robustness of hair motion blur.motion_curve_fixStefan Werner
In some instances, the number of control vertices of a hair could change mid-frame. Cycles would then be unable to calculate proper motion blur for those hairs. This adds interpolated CVs to fill in for the missing data. While this will not necessarily result in a fully accurate reconstruction of the guide hair, it preserves motion blur instead of disabling it. Reviewers: #cycles, sergey Reviewed By: #cycles, sergey Subscribers: sergey, brecht, #cycles Tags: #cycles Differential Revision: https://developer.blender.org/D3695
2016-07-30Cleanup: pep8Campbell Barton
2015-12-27Fix for error w/ QtCreator project builderCampbell Barton
cmake_qtcreator_project.py now takes a '--build-dir' argument. Since introduction of argparse, accessing last argv from project_info is no longer working. Now require a call to project_info.init before use.
2015-12-26Support custom project namesJulian Eisel
2015-03-21Cleanup: minor edits to project generatorsCampbell Barton
2014-12-29Small fix for QTCreator project script, by Sybren Stüvel.Lukas Tönne
Either ./blender-git or ~/blender-git should be used, but not .~/blender-git. This patch fixes that, by choosing ~/blender-git, in line with the last CLI argument.
2014-10-30Fix project-file generators (didn't close files)Campbell Barton
2014-08-05Remove SVN referencesCampbell Barton
2014-05-11CMake: use project name when generating project filesCampbell Barton
2013-01-07add error check for qtcreator&netbeans project file generators to quit early ↵Campbell Barton
if cmake fails.
2012-11-26switch verious references from py3.2 -> 3.3 or just 3.Campbell Barton
2012-10-08Fix for own commit r51178, duplicate line.Lukas Toenne
2012-10-08Allow user config files in qtcreator project.Lukas Toenne
The blender.config file used for local #defines in qtcreator projects is rewritten on every project update. To avoid losing user settings these can now be written to an optional blender_custom.config file, which is then merged into the main blender.config on updates.
2012-05-02replace python3 command with python3.2, python3 isnt available on ubuntu.Campbell Barton
2011-12-06attempt to fix defione for qtcreator project file and cycles define.Campbell Barton
2011-11-16support for creating project files in utf8 paths (was defaulting to ascii ↵Campbell Barton
and throwing errors)
2011-11-01name qtcreator projects based on branch names (if svn is found and its a ↵Campbell Barton
branch), was too confusing with multiple IDE's open calling all projects 'Blender'.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-07-31py api: sphinx doc corrections, pep8 cleanup and style edits, also added ↵Campbell Barton
__all__ to some modules which were missing it.
2011-07-29pep8 cleanup, also print message when attempting to run in animation player ↵Campbell Barton
mode.
2011-05-26correct spelling error and some pep8 changes.Campbell Barton
2011-05-16SVN maintenance.Guillermo S. Romero
2011-05-16made generic module for generating project files from cmake,Campbell Barton
added netbeans project file generator.
2011-04-10minor pep8 edits, also added 'test_pep8' & 'test_cmake' to the GNUmakefile ↵Campbell Barton
for convenience.
2011-04-06fix for cmake glew includes (tested with mingw), also made qtcreator project ↵Campbell Barton
generator work with mingw again
2011-04-05quiet warning & minor pep8 edits.Campbell Barton
2011-04-01pep8 checker, mostly pedantic style changes but also found an error in ↵Campbell Barton
mesh_utils.mesh_linked_faces()
2011-03-27pep8 cleanupCampbell Barton
2011-03-25include gcc builtin defines in qtcreator project file (__VERSION__, ↵Campbell Barton
__x86_64__, __linux__ etc)
2011-03-24write project files into the build dir.Campbell Barton
2011-03-24the script is now creating 2 project files:M.G. Kishalmi
Blender.creator Blender_Python.creator .glsl files have been added to the former latter contains everything .py
2011-03-15pep8 edits and remove commented code from last commit.Campbell Barton
2011-03-03added support for windows/mingwCampbell Barton
2011-03-03fix error in qtcreator project file arg checking and check for cmake files.Campbell Barton
2011-02-28git users complain this breaks for themCampbell Barton
2011-02-27- use Py_CLEAR for python internally referencing other PyObjects (supposed ↵Campbell Barton
to be safer). - detect includes for qtcreator projects as well as the ones from cmake (it didnt return all of the right paths).
2011-02-26fix for 'live edit', running python scripts as you typeCampbell Barton
- errors would jump to the line which gets in the way. - the window wouldn't always redraw.
2011-02-26qtcreator project generator now includes defines and correct include paths.Campbell Barton
2011-02-25fix for scons with recent change to how BINRELOC is enabled via cmake.Campbell Barton
also add WITH_PYTHON define to qtcreator project generator until we get a way to add them properly.
2011-02-17pep8 cleanup and remove unused vars/importsCampbell Barton
2011-02-04pep8 cleanupCampbell Barton
2010-12-17script to generate qtcreator project files, advantage is they include all ↵Campbell Barton
source which is nicer for refactoring.