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-07-08style cleanupCampbell Barton
2012-07-07increase file browser title length for multibyte translations and use utf8 ↵Sv. Lockal
copy for it
2012-07-07style cleanup: use c style comments in C codeCampbell Barton
2012-07-07code cleanup: dont use function calls like dot_v3v3, pow and sqrt within ↵Campbell Barton
macros which results in calling the function multiple times needlessly. also added some comments.
2012-07-07decrease size for convex hull epsilon when checking which side of a face the ↵Campbell Barton
vertex is on. this doesnt fix all cases but works better then it did.
2012-07-06style cleanup: var namesCampbell Barton
2012-07-06Fix for bug 32017.Chris Want
There was some bad recursion introduced recently that caused crashes when a Material node is the same material as the material itself (e.g., if Material.001 has a node with Material.001). This commit attempt to correct this by keeping track of the material at the root of the node tree, and doesn't recurse further if it encounters it again within the nodetree. Joshua, please review!
2012-07-06fix for rare crash we have with some mango files.Campbell Barton
2012-07-06 * Added OpenCL implementation of the Defocus nodeJeroen Bakker
* Always disable two phase compositing during rendering - At Mind -
2012-07-06use icons for rgb colorsCampbell Barton
2012-07-06Fix [#31923] Particle instanced objects don't show textures in renderBastien Montagne
Actually, particle instance modifier was still using tessfaces, but copying poly cdata! Simply made it using poly/loop.
2012-07-06rgb color display options for compo backdrop.Campbell Barton
2012-07-06Fix [#32003] Triangulate fails for simple case.Bastien Montagne
Main problem was in poly_rotate_plane() (which rotates a ngon to make its normal aligned with Z axis), it did not handled the case where the normal was aligned but opposite to the Z axis (which had the consequence that, as with the T mesh of the given blend, all tested new edges inside face were detected as outside, and vice-versa...). Additionnaly, I made a mistake in previous Triangulate commit (r48243) in bm_face_goodline, which could allow a few invalid triangles in some specific cases, fixed! And done a bit of cleanup, as I was at it.
2012-07-06You do not need to create an object to call a static function.Jason Wilkins
2012-07-05code cleanup: use a define for bmesh hull epsilonCampbell Barton
2012-07-05Cosmetic updates to mesh validate messages.Bastien Montagne
2012-07-05fix for making local loosing references to node groups.Campbell Barton
node->id was left as an indirect link which wont get saved with the file.
2012-07-05code cleanup: replace magic numbers with enum.Campbell Barton
2012-07-05add the ability to make objects and obdata local but not materials.Campbell Barton
2012-07-05Japanese and Ukranian are now above 60% done, congrats!Bastien Montagne
2012-07-05Added a default margin to the tile dependancy of the lens distortionJeroen Bakker
node.
2012-07-05Adjusted margin of the lens distortionJeroen Bakker
2012-07-05Moved highlight code to the workscheduler.Jeroen Bakker
2012-07-05Code cleanup: move PBVH ray/AABB intersection test to BLI_math_geomNicholas Bishop
2012-07-05Draw outdated point cache in a lighter colorSergej Reich
2012-07-05Change order of inclusion to stop MinGW from complainingAntony Riakiotakis
2012-07-05style cleanupCampbell Barton
2012-07-05code cleanup: remove Python.h include from blenkernel.Campbell Barton
2012-07-04Bugfix Smoke / DynamicPaint: Missing update call from depsgraph was missing ↵Daniel Genrich
when force fields were used.
2012-07-04Last spell checking (for now).Bastien Montagne
Only mysterious courant from bpy.types.ParticleSettings.courant_target reamins...
2012-07-04More spell checking.Bastien Montagne
2012-07-04spelling cleanup: metre -> erCampbell Barton
2012-07-04relay the original node to a different place holder to resolve someJeroen Bakker
crashes.
2012-07-04Spellfixes: colour -> colorBastien Montagne
2012-07-04Two pass execution:Jeroen Bakker
1. first pass only fast nodes are calculated and only to the active viewer node 2. second pass all nodes to all outputs Temp disabled highlights because of random crashes.
2012-07-04Highlight nodes that are being processedJeroen Bakker
2012-07-04Revert the DNA pdef_stickness -> pdef_stickiness part of r48556.Bastien Montagne
Forgot DNA needed stable names... :/ Correct spelling would involve keeping the old one for load code anyway, so better live with incorrect spelling here.
2012-07-04Mask node: create a copy of layers to be rasterized in initExecutionSergey Sharybin
This creates a list of splines to be rasterized in nitExecution which is being called from main thread. This should resolve possible threading issues discovered in tomato branch.
2012-07-04fix error in node template and quiet warning.Campbell Barton
2012-07-03More spell and typo fixes (mostly visualise->visualize, grey->gray, ↵Bastien Montagne
normalise->normalize).
2012-07-03First load of spell and typo fixes (mostly UI messages, but also one or two ↵Bastien Montagne
pieces of code using mis-spelled names).
2012-07-03Also fix Anim Player button for node editorSergey Sharybin
2012-07-03Fix #32002: "Anim Player" button on header doesn't appearSergey Sharybin
2012-07-03image sequence - apply cyclic option AFTER the image offset,Campbell Barton
there was no way to properly loop on a sequence of images that didnt start frame 1.
2012-07-03dont display image sequences outside the frame range in the 3D viewport.Campbell Barton
2012-07-03Fix for the "black F-Curves" bug on undoJoshua Leung
(From personal stash of bugs - since early 2.5 versions) F-Curve colors get applied only on Graph Editor "refresh()". In some cases, undo was reverting back to a state where the colors had not yet been set. In these cases, there would be no refresh() after that undo (until expanding a channel or some other similar action), resulting in "black F-Curves" appearing. So, now we force such an update after undo to ensure that the curves never display black. (Noticed while investigating another bug for Mango related to CLIP_OT_constraint_to_fcurve not sending notifiers required when new F-Curves are added)
2012-07-03Fix [#31977] Export Animated Mesh, terminate baking in fluid-simBastien Montagne
* Elbeem exporter code now overrides user settings to No Slip in case the object is animated; * UI of fluid obstacles now disables slip settings when export animated is enabled; * Added in this later option's tooltip a mention that it enforces No Slip!
2012-07-03fix (actually nasty workaround), for groups incorrectly drawing in the ↵Campbell Barton
object panel when the blend file has naming collisions with library data. also minor style cleanup in bpy_rna.c
2012-07-03Optimized the area of interest of the lensdistortion node.Jeroen Bakker
This will have faster feedback to the user, as lensdistortion is mostly a node that is located at the end of a composite
2012-07-03Check for nullpointers.Jeroen Bakker
The ID of group nodes are not always filled.