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
2013-04-15Fix #34978: for cycles, images displayed in the UV editor where coupled to theBrecht Van Lommel
active image texture node in the material, now this is removed and the image in the image editor is decoupled and not changed upon entering edit mode. This system caused more confusion then it's worth, changing or removing textures would modify the material but users would often not be aware of this.
2013-04-15Fix #34975: crash rendering curve/text with modifiers that alter topology,Brecht Van Lommel
was issue in new freestyle code.
2013-04-15Touch properties when clearing/adding to a collection.Sergey Sharybin
Fixes an issue when adding several movie strips fails second time in sequencer.
2013-04-15CMake: add LLVM_STATIC as cmake build option, so linux distributions can linkBrecht Van Lommel
LLVM dynamically. Patch by Dan Eicher.
2013-04-15Fix for cycles border render optimization commit, render status bar was off ↵Brecht Van Lommel
by 1 pixel.
2013-04-15Fix #34967: Display transform makes byte image with alpha=0 blackSergey Sharybin
Skip premultiplication/de-premultiplication when acquiring display buffer for a byte image. Will make conversion a bit faster also :)
2013-04-15rename axis_angle_to_mat3_no_norm() --> axis_angle_normalized_to_mat3().Campbell Barton
this matches closer to convention from existing functions - angle_v3v3() angle_normalized_v3v3(). also added assert to ensure argument given to axis_angle_normalized_to_mat3() is in fact normalized.
2013-04-15Fix: when using a search menu with an operator's enum prop, the operator was ↵Bastien Montagne
previously always executed with default options (appart from the search-set enum, of course). Now we store the op's properties in search button, so that you can specify non-default options (as it was already possible with e.g. pop-up menu from an operator's enum prop). To achieve this, some code (callbacks and search button creation) was moved from wm_operators.c to interface/interface.c, and a new UI function was added, uiDefSearchButO_ptr. Note: This new code uses the fact that uiButHandleFunc callbacks get executed before operator when one of its arg is the button itself! Many thanks to Campbell who helped me a lot with this patch! Cleanup: also removed two unused pointers from uiBut struct.
2013-04-15New implementation for twist brushes.Antony Riakiotakis
It has much better rotation and avoids the compression effect that old twist brushes have. Also twisting is now non periodic, meaning you can twist beyond 180 degrees. The amount of twist is also calculated relative to the angle formed after first translating the mouse away from the brush center.
2013-04-15WIP, jason's patchAntony Riakiotakis
2013-04-15Fix #34972: Blender crashes when Force Field-> Curve Guide is createdSergey Sharybin
Made it so where_on_path works correct when Curve does have editNurbs but no Curve->nurbs.
2013-04-15add back attribution field from script.Campbell Barton
2013-04-15Fix compilation with current FFmpeg trunkSergey Sharybin
AVCODEC_MAX_AUDIO_FRAME_SIZE was deprecated and finally removed from current trunk. Initial patch by Lawrence D'Oliveiro (ldo) with own modification, Thanks!
2013-04-15Make it so FATAL messages from libmv are print to the consoleSergey Sharybin
even when --debug-libmv is not passed via command line.
2013-04-15minor edits to DM_update_weight_mcol(), skip getting vars when in editmode, ↵Campbell Barton
also remove old/invalid comment.
2013-04-15Removed the extra ntree->update flag check in lib_verify_nodetree in ↵Lukas Toenne
readfile.c. This is unnecessary as the update flag will be checked internally in ntreeUpdateTree anyway, except for the generic bNodeTreeType->update callback (it could even be harmful by preventing necessary updates that don't use the ntree->update flag). Executing this once after loading a node tree is a useful feature for pynodes, so they can do initial verification.
2013-04-15code cleanup: minor BMESH_TODO's, some were left in even though they were ↵Campbell Barton
done/invalid.
2013-04-15Fix for bundle adjusting with motion restrictedSergey Sharybin
This commit bundles new libmv version from own branch which brings fix for wrong parameter block used for modal solver parameterization. Fixes #34985: Crash with Motion tracker (Tripod Motion)
2013-04-15Cycles: optimization for 3D viewport border render with heavy scenes, the OpenGLBrecht Van Lommel
render of objects could slow things down when redrawing the view each time a new sample is displayed. Now it does a partial redraw of the viewport with only the render border area, skipping OpenGL object drawing while the render is refining.
2013-04-14Cycles / Non-Progressive integrator:Thomas Dinges
* Subsurface samples were not taken into account for the Sobol directions table.
2013-04-14BGE: Cleaning up BL_ShapeDeformer's use of Blender's Key. This also fixes a ↵Mitchell Stokes
bug with replicas (added objects) crashing when using shape keys.
2013-04-14Freestyle stroke rendering is now done before lens flare. Suggested by Ton ↵Tamito Kajiyama
on IRC.
2013-04-14edits to startup.blendCampbell Barton
- temp dir /tmp\ --> /tmp/ - set sequencer cache limit from 128 --> 1024 - set sequencer view to RGB --> RGBA
2013-04-14Fix for r55961 which revered texture icons fix at r55499Sergey Sharybin
Reported by Antony Riakiotakis, thanks!
2013-04-14== FFMPEG / Canon DSLR footage workaround ==Peter Schlaile
The latest ffmpeg versions include a workaround to deal with a certain pecularity in Canon DSLR footage: instead of decoding pictures with the proper resolution of 1920x1080 they decode it with 1920x1088 and add a black bar at the bottom. Needless to say, that this screws up things in a lot of areas within blender (proxy indices, mask animations etc.) Since all blender versions besides Linux x86 32bit seem still to include older ffmpeg versions which still contain this bug, this patch adds a workaround for older versions until we have all versions on all platforms up to date. See also: http://git.libav.org/?p=libav.git;a=commit;h=30f515091c323da59c0f1b533703dedca2f4b95d
2013-04-14code cleanup: minor changes, clang checker option for exact size matches and ↵Campbell Barton
use vector functions.
2013-04-14correct pyapi function intersect_line_sphere_2d() using 3d vecs when only 2d ↵Campbell Barton
are needed.
2013-04-14fix for tangent curve flipping only doing 2d angle tests.Campbell Barton
2013-04-14Texture stencil:Antony Riakiotakis
Robustness: Avoid translating the stencil outside the active area. Helps to avoid losing the stencil somewhere in bitspace. Usability: Take image repeat mapping and scaling into account when fitting stencil aspect. Togglable by operator properties.
2013-04-14Shader nodes / order:Thomas Dinges
* Have all "Info" nodes next to each other. * Moved "Material Output" to the top. * Have all light shaders (Emission, Background, AO) next to each other.
2013-04-14Node Toolbar:Thomas Dinges
* Use column() layout, this way it uses a bit less space.
2013-04-14Node Socket UI:Thomas Dinges
* Fix for Min/Max labels, they started with a lower-case character.
2013-04-14minor speedup to BM_mesh_normals_update()Campbell Barton
2013-04-14Fix for #34910, NodeGroup input/output sliders bug. Initially i thought this ↵Lukas Toenne
was a limitation of the "only 1 list per panel supported" type, but this has since been fixed. Lists just need an additional identifier to distinguish lists in the same panel, thanks to Bastien Montagne for the uiList overhaul!
2013-04-14use UNLIKELY macro for frequently called inline bli math functions.Campbell Barton
2013-04-14bmesh operators: use operator type-flag to specify which operations require ↵Campbell Barton
normal-calculations and which operations require selection flushing. eg, no need to flush selection after 'Smooth' tool, no need to recalculate normals after 'Select Similar'.
2013-04-14modify snapObjectsRayEx() to use a pointer to 'ray_dist' rather then passing ↵Campbell Barton
the dist, this is to better support multiple calls to ray-cast where only closer distances are accepted.
2013-04-14BGE: Adding mipmapping control to bge.render via bge.render.setMipmapping() ↵Mitchell Stokes
and bge.render.getMipmapping().
2013-04-14Fix for [#34913] Freestyle: Problem w/ Edge Marks combined w/ Collision.Tamito Kajiyama
Freestyle edge marks were messed up with Collision and other physics mesh modifiers. The issue was due to copied Vlak instances without resetting edge marks to proper values. Also made minor changes for avoiding unnecessary hash table lookups, and added an assertion to check potential buffer overrun.
2013-04-14Code cleanup:Thomas Dinges
* Remove obsolete comment from layout file.
2013-04-14Code cleanup / Layout script:Thomas Dinges
* Never ever use something like "rowsub" as variable.
2013-04-14make buttons for edge/face area, length, angles etc. more compact.Campbell Barton
2013-04-14remove checks for 'context.scene' when checking if freestyle is enabled.Campbell Barton
2013-04-14show weight-display options in editmode.Campbell Barton
2013-04-14BGE: Adding a render.setFullScreen() and a render.getFullScreen() to allow ↵Mitchell Stokes
fulscreening games via Python.
2013-04-14code cleanup: edit-derived-mesh, define 'BMesh *bm' as local variable, avoid ↵Campbell Barton
'bmdm->em->bm' within functions.
2013-04-14fix for error in editmesh derived callbacks, emDM_getVert(), emDM_getEdge(), ↵Campbell Barton
emDM_getTessFace(). Currently the functions aren't used since they would fail have failed immediately.
2013-04-14code cleanup: rename BKE_tessmesh -> BKE_editmesh, rename ↵Campbell Barton
EditDerivedBMesh.tc -> em. ('tc' is odd name which isn't used elsewhere).
2013-04-14Mesh Drawing:Campbell Barton
Option to draw mesh vertex-weights in editmode, available from the 'Mesh Display' panel. TODO: get this to work when modifiers are applied in solid mode (texface-solidmode is working).
2013-04-13code cleanup: more minor changes for editmesh face drawing.Campbell Barton