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
2012-10-12quiet some -Wshadow warningsCampbell Barton
2012-10-12code cleanup: video playback move frame step into the PlayState struct.Campbell Barton
2012-10-12fix for own error in copy_as_script(), imports were incorrect.Campbell Barton
2012-10-12optimization for PyObject -> ID-property sequence conversion, use ↵Campbell Barton
PySequence_Fast.
2012-10-12quiet clang static checker warning by returning an error for invalid ↵Campbell Barton
situation getting an IDProp mapping from a PyObject. also print the path installed to when installing an addon.
2012-10-12remove BLI_noise from BLI_blenlib.h, not that many files need this.Campbell Barton
2012-10-12fix for many RNA definitions having soft/hard ranges swapped, make this ↵Campbell Barton
BLI_assert() on debug builds.
2012-10-12get the width and height of the font at once when drawing auto-key,Campbell Barton
also move BLF'g global font init into its own static function.
2012-10-11Revert part of own r51193 (now I know where Courant comes from...), and add ↵Bastien Montagne
another exception to UI messages spellchecker! Thanks to Lockal for pointing this.
2012-10-11Removed duplicate include of stdio.hJoshua Leung
At least on mingw, this doesn't seem to be needed.
2012-10-11OSX/cmake: after osl librenew with globals patch, forcing oiio is not longer ↵Jens Verwiebe
needed
2012-10-11Auto key warning - Stripping down to basicsJoshua Leung
Now just a static icon + text display in corner of view. No blinking. No red/orange text. No window borders.
2012-10-11Limit Distance Constraint - jpbouza Feature RequestJoshua Leung
The Limit Distance constraint is now allowed to use the owner/target space settings. Previously this wasn't exposed it didn't seem sensible/useful. However, this can be useful when dealing with dependencies between bones and the armature gets scaled. Usage notes: - It is advised to select the same space for both owner and target, otherwise the comparisons are meaningless
2012-10-11style cleanupCampbell Barton
2012-10-11fix [#32829] Crash when making linked Mesh with UV Map localCampbell Barton
2012-10-11style cleanup:Campbell Barton
also add helper makefile targets: * tbz - makes a tar.bz2 of an svn export * test_style_qtc - outputs style checks in qtc task format.
2012-10-10Cycles: per-BSDF normal input and new Bump node.Brecht Van Lommel
Each BSDF node now has a Normal input, which can be used to set a custom normal for the BSDF, for example if you want to have only bump on one of the layers in a multilayer material. The Bump node can be used to generate a normal from a scalar value, the same as what happens when you connect a scalar value to the displacement output. Documentation has been updated with the latest changes: http://wiki.blender.org/index.php/Doc:2.6/Manual/Render/Cycles/Nodes Patch by Agustin Benavidez, some implementation tweaks by me.
2012-10-10quiet compiler warnings from recent merge.Campbell Barton
2012-10-10Cycles: make anistropic BSDF / tangent work without UV map, based on generatedBrecht Van Lommel
coordinates map to a sphere.
2012-10-10workaround for feedback loop when viewing-selected/all with a locked camera.Campbell Barton
the camera could try include its own boundbox in its view. now just skip the camera if 'All Regions' and lock view option is enabled.
2012-10-10Google Summer of Code project: "Smoke Simulator Improvements & Fire".Daniel Genrich
Documentation & Test blend files: ------------------ http://wiki.blender.org/index.php/User:MiikaH/GSoC-2012-Smoke-Simulator-Improvements Credits: ------------------ Miika Hamalainen (MiikaH): Student / Main programmer Daniel Genrich (Genscher): Mentor / Programmer of merged patches from Smoke2 branch Google: For Google Summer of Code 2012
2012-10-10Cycles: Anisotropic BSDF enabled, with tangents now computed from the active ↵Brecht Van Lommel
UV map. It's using the Ward BSDF currently, which has some energy loss so might be a bit dark. More/better BSDF options can be implemented later. Patch by Mike Farnsworth, some modifications by me. Currently it's not possible yet to set a custom tangent, that will follow as part of per-bsdf normals patch.
2012-10-10- Ctrl+NumpadDel is now view-selected (all regions), ... was view cursor.Campbell Barton
- Ctrl+Home: is now view-all (all regions).
2012-10-10fix error changing the view with a lock-camera-to-view on and smooth-view ↵Campbell Barton
disabled.
2012-10-10add `All Regions` option to view_all (homekey), de-duplicate functions with ↵Campbell Barton
view-selected.
2012-10-10check addons are enabled before disabling them (would cause python ↵Campbell Barton
exceptions when removing a disabled addon).
2012-10-10option for view3d-selected to use all regions (nice for viewing selected in ↵Campbell Barton
quad-view), currently not assigned to any keys.
2012-10-10minor refactor, move view selected rv3d specific logic into its own static ↵Campbell Barton
function.
2012-10-10Its silly to use "verify index" because it will add non existing and remove ↵Ove Murberg Henriksen
them afterwards.
2012-10-10fix error setting quadview when there is no camera in the scene, the view ↵Campbell Barton
would glitch/jump when accessing afterwards.
2012-10-10fix for crash when entering fly mode in a camera view that has no camera ↵Campbell Barton
(rare but possible situation).
2012-10-10Graph Editor: Added a filtering option for Drivers mode to only show F-CurvesJoshua Leung
with errors This filtering option is useful when rigging and you want to figure out if any of your drivers are not functioning, and/or which one(s) are not, so that you can go through fixing them. It saves you from having to check on each one individually, or going into the console to try to infer which ones are not working.
2012-10-10Changing clear weight code from "assigning 0" to "removing".Ove Murberg Henriksen
Its less efficient but better practice. + Some style clean.
2012-10-10Fix #32780: Maya keymap selection issuesSergey Sharybin
Maya keymap used LMB press to select object and also used tweak event of LMB for border select. This lead to selecting object under the cursor before border select could start. This could be pain when working on huge scenes. Solved by switching selection from LMB press to release.
2012-10-10Cosmetic: Changed label of the 'Install Addon...' Button to 'Install from ↵Gaia Clary
File...'
2012-10-10Color Management: fixed color management-less texture renderingSergey Sharybin
There was a missing check for whether color management enabled or not when converting byte textures to linear space. This commit also fixes wrong texture preview rendering, which was applying sRGB transform twice, making procedural textures bright. This will make float textures being previewed dark (in a linear space) but that's how it used to behave in pre-OCIO color management.
2012-10-10use __restrict for string functions args so the compiler can assume they ↵Campbell Barton
dont overlap. also avoid comparing int/size_t in for loops.
2012-10-10refactor foreachScreen functions for clipping, now the projection clipping ↵Campbell Barton
flag is passed down directly rather then converting the enum into a flag, also fix own recent crash lasso seleting in object mode with pose objects.
2012-10-10code cleanup: split `foreach` object data iterator functions out of ↵Campbell Barton
drawobject.c (since they are used for selection too), into their own file: object_iterators.c
2012-10-10object center selection now uses floats, also fix own error in circle ↵Campbell Barton
selection in recent refactor.
2012-10-10refactor screen foreach functions to accept float[2] arguments rather then ↵Campbell Barton
int pairs. overall means less converting between float and int (and short in some cases).
2012-10-10transfer weight's now operates on selected vertices (when vertex select is ↵Campbell Barton
enabled).
2012-10-09code cleanup:Antony Riakiotakis
Move smart stitch drawing code inside a draw callback and use ED_region_draw_cb_activate instead of explicitly checking for this specific operator in the main uv drawing function.
2012-10-09Cycles: camera motion blur enabled.Brecht Van Lommel
Still more work needed to get object motion blur ready.
2012-10-09Generalization of node dependency sorting, avoid using the sock->link ↵Lukas Toenne
pointer. This pointer only works for sockets that follow the standard 1-to-n connectivity (an output can be linked to multiple inputs, an input can only have one connection). Future node trees may implement 1-to-1 or n-to-1 linking.
2012-10-09Fixed wrong preset settings for motion trackingSergey Sharybin
2012-10-09Fix cycles task manager calling pthread_join() twice. I haven't seen any bugsBrecht Van Lommel
from this but best to fix anyway as it causes undefined behavior. Pointed out on irc by dslammu, thanks!
2012-10-09code cleanup: make header defines more consistent, JOYSENSOR header guard ↵Campbell Barton
had a typo too.
2012-10-09Bugfix [#32703] elbeem's isSimworldOk() will never return FALSEDaniel Genrich
Fixed as suggested by Campbell, thank you!
2012-10-09Bugfix [#32677] Cloth Pinning Does Not Obey Weight MapDaniel Genrich
Problem occured when having more than one weight map available.