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-07-17Fix T56003: Opening image files as movies in VSE crashes.Bastien Montagne
metadata loading code was assuming all videos in Blender were from FFMPEG... added empty place-holders for other types too, we probably could load some metadata from pictures or AVI files too!
2018-07-16Fix (IRC-reported) wrong usercount handling of deprecated IPO datablocks.Bastien Montagne
versionning code would unref those twice... Reported by @ßergey on IRC, thanks!
2018-07-16Cleanup: Remove obscure flag which was only used for read in subsurf codeSergey Sharybin
Some sort of rudiment from many years ago, is never set by 2.5x code.
2018-07-16Cleanup: Use const qualifier for UV vertex mapSergey Sharybin
2018-07-16Cleanup: More clear naming in UV vertex/element mappingsSergey Sharybin
Also use unsigned short for loop index within a polygon for UV vertex mapping, which matches UV element mapping.
2018-07-16Fix T55944: fbx export error with smoothing facePhilipp Oeser
ddee0931b868 added PROP_RAW_BOOLEAN case for foreach_set, but missed foreach_get Reviewed By: brecht Differential Revision: https://developer.blender.org/D3534
2018-07-16Fix T55527: creating a Quaternion without args should result in identityPhilipp Oeser
quaternion Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D3487
2018-07-15Cleanup: doxy commentsCampbell Barton
2018-07-15Cycles: add voronoi features and distance settings from Blender.charlie
Features to get the 2nd, 3rd, 4th closest point instead of the closest, and various distance metrics. No viewport/Eevee support yet. Patch by Michel Anders, Charlie Jolly and Brecht Van Lommel. Differential Revision: https://developer.blender.org/D3503
2018-07-13Remove invalid assertCampbell Barton
2018-07-13Cleanup: operator type API, headerCampbell Barton
2018-07-13Cleanup: move WM type registration into own filesCampbell Barton
Type registration is mostly boiler plate logic, which can be separated from other API's.
2018-07-13Nodes: add sqrt, ceil, floor and fract to math nodes.Charlie Jolly
This works for Cycles, Eevee, texture nodes and compositing. It helps to reduce the number of math nodes required in various node setups. Differential Revision: https://developer.blender.org/D3537
2018-07-13Cleanup: id-property API useCampbell Barton
Also clarify comments.
2018-07-13Cleanup: split keymap lookups into own functionsCampbell Barton
More will be added in 2.8, keep this manageable.
2018-07-13Keymap: dope-sheet hotkey to change falloffPhilipp Oeser
2018-07-13Cleanup: right shift argumentsCampbell Barton
2018-07-12Cleanup: remove legacy mesh save supportCampbell Barton
This was used for saving files for Blender 2.6x.
2018-07-12PyAPI: add undo redo handlersCampbell Barton
Useful so Python can clean up before/after undo steps.
2018-07-12Fix T55949: increase color management exposure hard range.Brecht Van Lommel
2018-07-12Cleanup: header guardsCampbell Barton
2018-07-12Fix PyRNA class registration w/ Python 3.7Campbell Barton
In Python3.7 this now raises an error.
2018-07-11Fix T55912: saving Viewer Node image error.Bastien Montagne
Images from viewer node needs the lock parameter...
2018-07-11Minor cleanup to logic in BKE's imbuf releasing code.Bastien Montagne
2018-07-11Cleanup: duplicate versioning blockCampbell Barton
2018-07-11Depsgraph: Fix face dependency cycle when bone uses id property from selfSergey Sharybin
2018-07-10OpenSubdiv: Make more flexible C-API to specify FVar interpolationSergey Sharybin
2018-07-10Keymap: minor changes for keymap displayCampbell Barton
2018-07-10Fix transform plane constraint orientation cycleCampbell Barton
Regression since 2.79b release
2018-07-09Cleanup: use const transform argsCampbell Barton
2018-07-09Cleanup: remove 'Orientation' from keymap item nameCampbell Barton
It's constraint not an orientation, in transform context it can be inferred.
2018-07-09Keymap: remove some hard coded transform eventsCampbell Barton
Also re-order for display purposes
2018-07-09Cleanup: right shiftCampbell Barton
2018-07-07Fix scale in Apply Pose As Rest Pose for bendy bones.Alexander Gavrilov
Scale is multiplicative, and adding it up causes the bone to bloat.
2018-07-07Cleanup: pep8Campbell Barton
2018-07-06PyDrivers: update bytecode check for Python3.6Campbell Barton
2018-07-06Animation player: Ensure new frames are displayed while dragging mouseSergey Sharybin
Thanks Campbell for review!
2018-07-06Cleanup: use outliner_flag_* name prefixCampbell Barton
2018-07-06fix c++ comment style in 3cc2a9b934d0Philipp Oeser
2018-07-06Ocean Modifier: removed unused refresh flagsSybren A. Stüvel
The flags were set and cleared correctly, but nothing was actually reading them.
2018-07-06Ocean Modifier: removed the MOD_OCEAN_REFRESH_ADD flagSybren A. Stüvel
The flag was only used in readfile.c, and resulted in a delayed call to BKE_ocean_add(); this call is now immediately made instead as it's not very expensive.
2018-07-06Fix T55581: kill running (render) jobs when deleting a scenePhilipp Oeser
also fixed passing WM_JOB_TYPE_ANY to WM_jobs_kill_type() Reviewed By: brecht Differential Revision: https://developer.blender.org/D3498
2018-07-06Empty Object: Center images by defaultCampbell Barton
2018-07-06BKE_addons: utility to remove by nameCampbell Barton
2018-07-05Cleanup: flag checksCampbell Barton
2018-07-05RNA: correct callback typeCampbell Barton
Missed when changing callbacks from int to bool type.
2018-07-03Python: Print file:line when editing UI sourceCampbell Barton
2018-07-03Cleanup: pep8Campbell Barton
2018-07-02Cleanup: right shiftCampbell Barton
2018-07-02Painting: fix uninitialized variable useCampbell Barton