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
2011-11-10Cycles: many of the new nodes were not showing properties/buttons in nodes inBrecht Van Lommel
the node editor.
2011-11-10quiet some warnings from recent mergeCampbell Barton
2011-11-10Fixed possible issue drawing undistorted clip in clip editor.Sergey Sharybin
Check for marker's visibility was a bit odd.
2011-11-10Restored GPL header of NOD_composite.h (funny s&r ?!?).Bastien Montagne
2011-11-10Dynamic Paint merge:Miika Hamalainen
Commit Dynamic Paint from "soc-2011-carrot" branch into trunk. End-user documentation: http://wiki.blender.org/index.php/Doc:2.6/Manual/Modifiers/Simulation/Dynamic_Paint GSoC wiki page: http://wiki.blender.org/index.php/User:MiikaH/GSoC-2011-DynamicPaint
2011-11-10Workaround #29205: Crash while using Edge Split modifier (while rotating ↵Sergey Sharybin
vertices in edit mode with edge split viewable) This bug is caused by exactly the same reason as #26316: differences in how new vertices/edges are getting calculated first and how they're adding later. In some cases extra vertices are creating which weren't counted before. This patch prevents crash in such situations, but result mesh can be a bit wrong. This should work fine in bmesh, so think it's acceptable to have such workaround before actual fix coming with bmesh.
2011-11-10- possible fix for vertex paint 'fill' crash.Campbell Barton
- remove unneeded call to defvert_find_index() when weight painting.
2011-11-10add some missing headers to cmake, also add some files as comments since it ↵Campbell Barton
seems they should be added but evidently work fine without.
2011-11-10quiet warningCampbell Barton
2011-11-10presets now work from non-redo popups,Campbell Barton
ended up having to add a new pointer into the uiBlock (which I'd rather have avoided), but setting the uiLayoutSetContextPointer(..) was complicated to properly use for submenus and popus.
2011-11-10While reviewing this part of the code for a Blender Proceedings article, I ↵Jason Hays
noticed that the lock enforcer was taking several improper steps to redistribute evenly with multi-paint. Beforehand, a few problems were in view: some of the indexing was changed towards the end to use the more efficient stack structure, but needed to use the correct def group indices. Also, the designated selected group would use its own value to acquire the standard to base change distributed to the others. Lastly, the total_change was used rather than -left_overs in the formula to compute the new designated weight within the means of the locks' allowed changes. Now, while maintaining the ratios of the selection, it correctly returns left over change that could not be redistributed to the unlocked groups.
2011-11-09Merge with trunk r41701soc-2011-carrotMiika Hamalainen
2011-11-09Fixed/restored translation of node classes (in foreach_nodeclass funcs)Bastien Montagne
2011-11-09Moving i18n code to BLF_translation.hBastien Montagne
This way, we will be able to use it in non-UI parts of the code too.
2011-11-09minor: Moved italian and russian translations to "nearly done" menu part.Bastien Montagne
2011-11-09Moving version-patches for theme/userpref setting changes as result ofJoshua Leung
GSoC11-Pepper changes forward to the version patch in place for Cycles + Tracking. It turns out that the original version patches introduced for these settings were being done for the wrong version, and hence did not show in trunk as they should have (2.59 came out before the branch was merged, so this kindof slipped under the radar). The affected settings were: - default handle-type (which was supposed to be "auto-clamped" but was "auto" in trunk) - theme settings for these handle colours
2011-11-09minor: some fixes and tweaks in new messages, found while translating them ↵Bastien Montagne
in french...
2011-11-09Add compiles support for Cycles.Nathan Letwory
No CUDA compiling yet, will be added later.
2011-11-08Cycles: fix crash loading existing files, forgot to merge over this line.Brecht Van Lommel
2011-11-08quiet warningCampbell Barton
2011-11-08Cycles MergeBrecht Van Lommel
Documentation: http://wiki.blender.org/index.php/Dev:2.6/Source/Render/Cycles http://wiki.blender.org/index.php/Doc:2.6/Manual/Render/Cycles Cycles is available is an extra render engine from the top header. It's not feature complete, consider this as a first preview release. Known bugs: http://wiki.blender.org/index.php/Dev:2.6/Source/Render/Cycles/KnownIssues Building currently only works with CMake, SCons support is being worked on and should be available soon. Also missing still is precompiled OpenImageIO and Boost for Linux, these will be added later in lib/linux*, if you do not have these installed on your system, Cycles will simply not be available.
2011-11-08- operator presets now work in the 3D view as well as the file selector.Campbell Barton
to enable from python: bl_options = {'REGISTER', 'UNDO', 'PRESET'} from C: ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO|OPTYPE_PRESET; - added context member 'active_operator' - enable this for 'Add Torus' for testing.
2011-11-08Fix #29201: movie clip editor - right click crashes blenderSergey Sharybin
Just another not very smart check for "boundary" case of usecase.
2011-11-08- disable undo for user preferences (every click would do push an undo), was ↵Campbell Barton
noticeable on large files. - also netbeans project file generator now uses branch name for project.
2011-11-08Attempt to fix #29200: Camera Tracking SolverSergey Sharybin
It was an mistake in join tracks operator which lead to reading unitialized memory.
2011-11-08Texturing: texture and 3d view draw type changes, these should only have anyBrecht Van Lommel
effect for a render engine using new shading nodes. In short: * No longer uses images assigned to faces in the uv layer, rather the active image texture node is what is edited/painted/drawn. * Textured draw type now shows the active image texture node, with solid lighting. * Material draw mode shows GLSL shader of a simplified material node tree, using solid lighting. * Textures for modifiers, brushes, etc, are now available from a dropdown in the texture tab in the properties editor. These do not use new shading nodes yet. http://wiki.blender.org/index.php/Dev:2.6/Source/Render/TextureWorkflow
2011-11-08Fix for last fix, guess this compiled ok because it's interpreted as a goto ↵Brecht Van Lommel
label.
2011-11-08Fix an issue with uninitialized memoryJens Verwiebe
2011-11-08Cycles: svn merge -r41627:41650 ^/trunk/blenderBrecht Van Lommel
2011-11-08Nodes: add cycles shader nodes, these will only be available to render enginesBrecht Van Lommel
that use the new shading nodes system. Documentation: http://wiki.blender.org/index.php/Doc:2.6/Manual/Render/Cycles/Nodes
2011-11-08Fix: incorrect use of IFACE_ macro, and correct a typo.Brecht Van Lommel
2011-11-08- Fixed typo in KLT description tooltipSergey Sharybin
- Fixed inconsistent data type used for pts number in ffmpeg_fetchibuf and stored in timecode structure. Not really issue for "correct" movie files, but probably can help for "broken" one
2011-11-08Fix a typo in building undistorted proxies for movie clips.Sergey Sharybin
Thanks Campbell to point on this issue.
2011-11-08use some more logical BLI math functions & tracking used INT_MAX on a short.Campbell Barton
2011-11-08Code cleanup and small fixes:Sergey Sharybin
- Assume all areas are using valid MovieClipUser when using functions from movieclip.c - Set active scene clip to movie-related nodes in compositor rather than checking if there's only one clip in datablocks - Fixed users count issue when solving camera motion
2011-11-08Code cleanup - reshuffling some stuff to avoid buildup of long functions in ↵Joshua Leung
transform code again
2011-11-08cmake & pep8 tidy up, also some style edits.Campbell Barton
remove unneeded collection length function.
2011-11-08UI/Nodes: templates to edit nodes from the properties editor using a tree view,Brecht Van Lommel
to be used by cycles. For testing there's a panel in the node editor if you set debug to 777, didn't enable it because I'm not sure it's very useful there.
2011-11-08Nodes: add foreach_nodeclass iterator over node classes, use for node add menu.Brecht Van Lommel
2011-11-07Fix [#29194] Spelling errorBastien Montagne
(yes sir, it is a bugfix :P ).
2011-11-07Textures/Shaders: extend TexMapping to include projection options, and add aBrecht Van Lommel
ColorMapping struct for color manipulation of textures. These will be the standard built-in texture node options for manipulating the incoming texture coordinate and outgoing color.
2011-11-07Nodes: add socket option to hide the default value in the UI, to be used forBrecht Van Lommel
sockets that get their default value if no node is connected from elsewhere, e.g. a texture coordinate.
2011-11-07Cycles: svn merge -r41613:41627 ^/trunk/blenderBrecht Van Lommel
2011-11-07Revert fix for #29146, needs deeper changes to solve this fully.Brecht Van Lommel
2011-11-07Merge with trunk r41625Miika Hamalainen
2011-11-07RNA:Brecht Van Lommel
* Expose 3D view camera zoom and offset, needed if you want to precisely reconstruct camera parameters. * Rename SpaceFileBrowser.operator to active_operator, to avoid conflict with c++ keyword.
2011-11-07quiet warnings when building without libmvCampbell Barton
2011-11-07fix for error in own recent commit.Campbell Barton
2011-11-07use macro for access to library filepathCampbell Barton
2011-11-07fix for error using freed memoryCampbell Barton