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
2014-10-22Cycles: Implement Mitchell-Netravali pixel filterSergey Sharybin
It's the same filter which is used by default by Blender Internal renderer and it gives crispier edges than gaussian filter. Default filter for Cycles is unchanged because it's unclear if new filter gives more noise or not. After some further real production tests we can consider making Mitchell filter default for Cycles as well.
2014-10-22Cycles: Code cleanup -- use bitshifts instead of hardcoded constantsSergey Sharybin
This way it's easier to extend bitfields and see when we start running out of free bits. Plus added brief description of what SD_VOLUME_CUBIC flag means.
2014-10-22Cycles: Get rid of hardcoded enum values in the codeSergey Sharybin
Still need to keep enum definition in sync with the python code, but the code itself is a bit more clear to understand now.
2014-10-22Cycles: Expose volume voxel data interpolation to the interfaceSergey Sharybin
It is per-material setting which could be found under the Volume settings in the material and world context buttons. There could still be some code-wise improvements, like using variable-size macro for interp3d instead of having interp3d_ex to which you can pass the interpolation method.
2014-10-22Cycles: Implement tricubic b-spline interpolation for CPU texture_imageSergey Sharybin
This is the first step towards supporting cubic interpolation for voxel data (such as smoke and fire). It is not epxosed to the interface at all yet, this is to be done soon after this change.
2014-10-22Meshdeform: Use SSE intrinsics in meshdeform_dynamic_bind()Sergey Sharybin
Quite straightforward change, don't think some extra explanation is needed. This gives about 15% speedup of the modifier evaluation on my laptop. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D836
2014-10-22Meshdeform modifier: Use threaded evaluationSergey Sharybin
This commit switches meshdeform modifier to use threads to evaluate the vertices positions using the central task scheduler. SO now we've got an utility function to help splitting the for loop into tasks using BLI_task module which is pretty straightforward to use: it gets range (which is an integer lower and higher bounds) and the function and userdata to be invoked for each of the iterations. The only weak point for now is the passing the data to the callback, this isn't so trivial to improve in pure C. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D838
2014-10-22OSX: fix T42325 by not letting .vob handled by qt, avoids a doublefreeJens Verwiebe
2014-10-22Cleanup: avoid loop-in-loop when mirror isn't usedCampbell Barton
Also name 'children' is normally used for a list
2014-10-22Fix T42334: x-mirror fails in armature with a partially mirrored chain.Lukas Tönne
When resetting edit bones on cancel, they also have to reset connected parent and child bone tips and heads respectively, since these can be modified during the transform.
2014-10-22high-res: inflow data passed in-memory, forces workingRoman Pogribnyi
2014-10-21Cleanup: styleCampbell Barton
2014-10-21Linux/scons: fix compile, BF_BOOST_LIB_STATIC string was miising a spaceJens Verwiebe
2014-10-21Fix T42260: By repeatedly joining meshes, you could end up with thousands of ↵Bastien Montagne
UVLayers This is only an indirect fix, in fact: this commit adds a public API to check the maximum number of a given layer type (`CustomData_layertype_layers_max()`), and uses it to forbid too much layer creation in `CustomData_merge()`. This only affects UVs/VCol data though, but merge behavior in itself is not a bug actually, how user managed to get thousands of different UV layer names remain rather mysterious...
2014-10-21Fix T42278: Grease Pencil in Movie Clip Editor can not be erased in Track > ↵Sergey Sharybin
Cursor mode Eraser was not aware of possible transform matrix for the strokes.
2014-10-21Fix T42324: Curve deform modifier from mesh edge doesnt work properlySergey Sharybin
Curve parent requires valid path to exist for curve. If the path is disabled in the curve settings, displist evaluation will check the dependency graph whether the path is needed for parenting. The issue was that changing relations in the scene chagned need of the curve path but nothing tagged the curve to update it's path. For now use direct call of DAG_id_tag_update from set_parent(). In the bright future we might detect such a need in flush automatically in the depsgraph.
2014-10-21Simplify GLSL in bump mapping, use gl_NormalMatrix where appropriate.Antony Riakiotakis
tangents are directions and should be transformed like directions.
2014-10-21Fix T42257: Curve vertex parent not working with animationSergey Sharybin
Vertex parent was using original non-modified nurbs list, simply because it didn't have something else to operate with. Now we've got deformed by pre-tessellation modifiers nurbs in the curve cache which might be used y the vertex parent.
2014-10-21Fix T42178: Cycles Film Exposure not triggering Viewport updateSergey Sharybin
2014-10-21ListBase: use BLI_listbase_ for new api callsCampbell Barton
2014-10-21Fix tgz script, addons_contrib was in releaseCampbell Barton
2014-10-21ShapeKeys: rework 'move skey' code, and add options to move to first/last ↵Bastien Montagne
position. Main moving logic is moved to new `BKE_keyblock_move()`, which makes it available from anywhere. In addition, move code was reworked so that it only loops once on whole keyblocks list, and it accepts arbitrary org and dest indices, not only neighbor ones. Partly based on work by revzin (Grigory Revzin) in his soc-2014-shapekey GSoC branch, thanks!
2014-10-21BLI_listbase: add `BLI_swaplinks` which swaps given links' positions in ↵Bastien Montagne
given list. Can be much simpler and quicker than using remlink/insert functions.
2014-10-21UI Icons: add 'triangle-bar' left/right/up/down icons.Bastien Montagne
2014-10-21Fix sequencer clipboard with meta's containing ID referencesCampbell Barton
2014-10-21Fix sequencer duplicate with only handle selectedCampbell Barton
2014-10-21Fix T42326 trim operator not cancelled by the escape key.Antony Riakiotakis
2014-10-21Don't change global compiler flags when FFmpeg is enabledSergey Sharybin
It should no be longer needed. If it causes the issues please let me know to find a more cleaner solution.
2014-10-20Fix T42311, too many paint slots added.Antony Riakiotakis
Don't allow the add paint slot operator to redo. Also guard better against excessive slot addition
2014-10-20Trim tool:Antony Riakiotakis
Effects strips in metastrips could be erratic.
2014-10-20Better fix for previous trim fix.Antony Riakiotakis
2014-10-20Fix T42313: Ruler always measures 0.0Campbell Barton
Passing 'ar' to snapObjectsRayEx would apply a ray-offset.
2014-10-20Fix trim tools metastrip borders not getting updated correctly.Antony Riakiotakis
2014-10-20Merge trim tool from terrible_consequencerAntony Riakiotakis
The trim tool (T key) allows users to change the position of the contents of a strip without moving the strip itself.
2014-10-20Optimization for mesh deform: use BLI_INLINE specifiersSergey Sharybin
This helps compiler to do detect stuff which might be inlined, gives around 30% speedup on my laptop with test files from ZanQdo.
2014-10-20Fix T42189Antony Riakiotakis
Own mistake - not copying enough data.
2014-10-20Fix T42264: Negative scale & clipped-select failsCampbell Barton
Thanks to mont29 for finding the cause.
2014-10-19Fix T42304: blender 2.72a 3D view object selected color wrong in 2.4x theme.Bastien Montagne
I would not have endured such a critical and monstruous bug one more femtosecond! And even worse - active color was awfully wrong too! Shocking!
2014-10-19Fix T42303 Icons lost after loading windowAntony Riakiotakis
The issue here is that if no matching winid is found, we destroy all windows and their context with them. This will also delete the OpenGL textures associated with the initial context, thus we lose the icons. This patch makes sure a window is always kept for later so the initial context does not get lost. Thanks to Campbell and Ton for the discussion on the issue.
2014-10-19Fix typo in calculateCenterMedian that could give computed median point ↵Grigory Revzin
wrong values. From soc-2014-shapekey branch, with minor edits by mont29 (Bastien Montagne).
2014-10-19Revert "Freestyle: Built-in SVG exporter."Campbell Barton
This reverts commit 61a330baca0ff9bb3cf477c04f539ef276a0356f. This completes reverting D785 This feature is to be reworked into an addon.
2014-10-19Revert "Fix for rB61a330baca0f: Changed SVG file encoding from UTF-16 to UTF-8."Campbell Barton
This reverts commit 490f2aeb8247463a7ea1a86a3a8c4246fcf45f23.
2014-10-19Revert "Freestyle: rename module to export_svg"Campbell Barton
This reverts commit db249b787fe0875944e00df1a3d12a58d9a07249.
2014-10-19Revert "Freestyle: add GPL headers"Campbell Barton
This reverts commit 3cbb066b838b4d52673f3fd76c2f695a3491b8b6.
2014-10-19Revert "Cleanup: pep8"Campbell Barton
This reverts commit 06cdc35a68d9a0bd2a84fd92bda2be11318d46ff.
2014-10-19Revert "Cleanup: unused import"Campbell Barton
This reverts commit fc7752b53c793a6985525d4c099108a97cd7867e.
2014-10-19Revert "Freestyle: lazy load 'export_svg'"Campbell Barton
This reverts commit c35a649a0a6c3c07bb8d56caba680887f726b9e9.
2014-10-19Reports: include parent library in readfile reportCampbell Barton
Helps troubleshooting indirect links.
2014-10-18Freestyle: lazy load 'export_svg'Campbell Barton
Loading XML module, registering etree namespaces... etc on startup for everyone on chance someone may want to export an SVG from Freestyle is unacceptable. This shouldn't have got through the review. also disable loading when built without freestyle.
2014-10-18Cleanup: unused importCampbell Barton