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-08Correct syntax for static, since we invoke g++ as linker and we have to pass ↵cyclesAntony Riakiotakis
it to ld
2011-11-08Cycles now uses correct libs on MinGWAntony Riakiotakis
2011-11-08Cycles:Brecht Van Lommel
* Disable precompiled cuda binaries, always do at run time * Change preview samples default to 10 * Hide volume panels since they don't do anything yet
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-08Code cleanup: fix compile warning.Brecht Van Lommel
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-08Tracker:Thomas Dinges
* Typo fixes for space_clip.py, patch by Mike S on the mailing list.
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-08SVN maintenance.Guillermo S. Romero
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-07Hopefully compilation with MinGW will work again.Sergey Sharybin
Tested with official MinGW and SCons, not sure how ti check it when using CMake.
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-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-07CMake: add delayed_install macro to specify files to be installed from modulesBrecht Van Lommel
other than source/creator.
2011-11-07CMake: Boost and OpenImageIO building support (unused still).Brecht Van Lommel
2011-11-07fix for error using freed memoryCampbell Barton
2011-11-07Some small fixed for camera tracking:Sergey Sharybin
- Lock to selection and center to selection will now work fine with undistorted rendering - Do not display pyramid for disabled tracks - Corrected fix for wrong correlation_min property name
2011-11-07Cycles: svn merge -r41531:41613 ^/trunk/blenderBrecht Van Lommel
2011-11-07minor warning nicer api useCampbell Barton
2011-11-07Tracker/Movie Clip Editor:Thomas Dinges
* Fix property not showing up: correlation_min, was actually called minimum_correlation in RNA.
2011-11-072.6 UI:Thomas Dinges
* Minor tweaks after tomato merge, rest of Tomato UI code is excellent. :)
2011-11-07Bugfix [#29064] armature with curve contraint - crashJoshua Leung
Spline IK and Auto-IK working together on the same bone chain could crash due to the somewhat hacky way that they were sharing the same list for the "iktree" forest. Resolved by doing what I should have done from the beginning, and made Spline-IK save its ik chains off into a separate list. While this fixes the crash, it might be worth investigating outright disabling this from working in this case, since it can be a bit confusing to have it appear to not work.
2011-11-07Camera tracking integrationSergey Sharybin
=========================== Rest of changes from camera tracking gsoc project. This commit includes: - New compositor nodes: * Movie Clip input node * Movie Undistortion node * Transformation node * 2D stabilization node - Slight changes in existing node to prevent code duplication
2011-11-07Camera tracking integrationSergey Sharybin
=========================== Commiting camera tracking integration gsoc project into trunk. This commit includes: - Bundled version of libmv library (with some changes against official repo, re-sync with libmv repo a bit later) - New datatype ID called MovieClip which is optimized to work with movie clips (both of movie files and image sequences) and doing camera/motion tracking operations. - New editor called Clip Editor which is currently used for motion/tracking stuff only, but which can be easily extended to work with masks too. This editor supports: * Loading movie files/image sequences * Build proxies with different size for loaded movie clip, also supports building undistorted proxies to increase speed of playback in undistorted mode. * Manual lens distortion mode calibration using grid and grease pencil * Supervised 2D tracking using two different algorithms KLT and SAD. * Basic algorithm for feature detection * Camera motion solving. scene orientation - New constraints to "link" scene objects with solved motions from clip: * Follow Track (make object follow 2D motion of track with given name or parent object to reconstructed 3D position of track) * Camera Solver to make camera moving in the same way as reconstructed camera This commit NOT includes changes from tomato branch: - New nodes (they'll be commited as separated patch) - Automatic image offset guessing for image input node and image editor (need to do more tests and gather more feedback) - Code cleanup in libmv-capi. It's not so critical cleanup, just increasing readability and understanadability of code. Better to make this chaneg when Keir will finish his current patch. More details about this project can be found on this page: http://wiki.blender.org/index.php/User:Nazg-gul/GSoC-2011 Further development of small features would be done in trunk, bigger/experimental features would first be implemented in tomato branch.
2011-11-07Removing a wrong node_type_storage (checked and confirmed by lukas_t).Bastien Montagne
2011-11-07Fix #29174: Vertex normals temporarily incorrect after deleting a faceSergey Sharybin
Looks like it was just missed recalc_editnoormals call in Delete Mesh operator.
2011-11-07fix [#29183] Make duplicates real: parent informations of the group is not ↵Campbell Barton
copied infact this is a feature request but we had reports about it before and its useful to have. 2 new options for OBJECT_OT_duplicates_make_real - parent to original duplicator - keep internal hierarchy
2011-11-07minor editsCampbell Barton
- remove unneeded type check from convert grease pencil operator. - correct some error prints & use __func__. - make copy_libblock take an ID* argument rather than void*.
2011-11-07replace VECCOPY with copy_v3_v3, same for 2d copy, also added vec copy ↵Campbell Barton
functions for int & char.
2011-11-07Cycles: procedural texture nodes reorganization. This will break existing filesBrecht Van Lommel
using them, but rather do it now that I have the chance still. Highlights: * Wood and Marble merged into a single Wave texture * Clouds + Distorted Noise merged into new Noise node * Blend renamed to Gradient * Stucci removed, was mostly useful for old bump * Noise removed, will come back later, didn't actually work yet * Depth setting is now Detail socket, which accepts float values * Scale socket instead of Size socket http://wiki.blender.org/index.php/Doc:2.6/Manual/Render/Cycles/Nodes/Textures
2011-11-06more macro --> BLI math lib, mainly replace VECCOPY in render and blenkernel.Campbell Barton
2011-11-06replace macros for bli math functions in editorsCampbell Barton
2011-11-06replace macros with bli math functions for nodesCampbell Barton
2011-11-06Fix for bug #29046, the factor buffer input was not used correctly in curve ↵Lukas Toenne
nodes. Curve Map exec function (for RGB curves) used a broken test condition for constant factor=1.0f eval. This must take the factor buffer into account, checking the factor vec for default value is not sufficient. These kinds of test should use a function interface, there are probably a lot more bugs like this hidden in the code.
2011-11-06more macro --> bli math lib replacements.Campbell Barton
2011-11-06misc macro --> bli math lib functionsCampbell Barton