Blender Git Commits

Blender Git "master" branch commits.

Page: 3259 / 5574

March 14, 2013, 19:40 (GMT)
BLI_linklist_free() was incorrectly taking MEM_freeN() as an argument, evidentially this works on x86 - but could cause issues later on.
add BLI_linklist_freeN() which MEM_freeN's each item.
March 14, 2013, 18:44 (GMT)
split up BKE_mesh_to_curve() into 2 functions, adding BKE_mesh_to_curve_ex() which doesn't do object type conversion.
March 14, 2013, 18:35 (GMT)
converting a mesh to a curve was unnecessarily using tessface's.
use mpolys instead and simplify checks for wire edges.

Also rename BKE_mesh_from_curve() --> BKE_mesh_to_curve() since this function converts a mesh into a curve.
Revision 64b2ecf by Gaia Clary
March 14, 2013, 16:53 (GMT)
Userprefs:Addon panel - Renamed label of the link to the documentation
March 14, 2013, 16:25 (GMT)
There was a regression in recent bugfix which touched Mix node.

This commit hopefully fixes that regression.
Revision 84b90c2 by Gaia Clary
March 14, 2013, 15:01 (GMT)
Fix misguiding menu label and make tooltip more descriptive
March 14, 2013, 14:46 (GMT)
use floats for knife tool internal mouse coord.
March 14, 2013, 14:05 (GMT)
Usual blenderplayer fix! :p
March 14, 2013, 13:58 (GMT)
minor knife refactor to prepare for running non interactively.
March 14, 2013, 13:00 (GMT)
disable -Wredundant-decls for gcc versions older then 4.6
March 14, 2013, 11:29 (GMT)
ui_def_but() allocating an extra byte in 'but->str' for no reason.
March 14, 2013, 10:39 (GMT)
use BLI_strncpy_rlen() rather then BLI_snprintf() when no formatting is needed.
also replace sprintf with strcpy when no formatting is done.
March 14, 2013, 10:15 (GMT)
Code cleanup: replace magic constant used for alpha ignore flag with a define.
March 14, 2013, 10:07 (GMT)
add BLI_strncpy_rlen(), a clone of BLI_strncpy() that returns the number of bytes copied.

also move doxy comments for BLI_string.h into the C file.
March 14, 2013, 09:50 (GMT)
Fix #34616: Wrong face culling for curves with constructive modifiers

If curve object does have derived mesh, culling shall happen for
back faces, not front.
March 14, 2013, 09:49 (GMT)
minor change to BLI_strncpy(). replace strlen() with BLI_strnlen().
March 14, 2013, 07:56 (GMT)
code cleanup: de-duplicate view clipping function for paint and knife tool, minor changes to knife initialization.
March 14, 2013, 07:38 (GMT)
Border rendering now works for all scenes used in compositor,
before this only active scene would be rendered with border.

When do_render_fields_blur_3d() is finished, it'll modify
render's display rect so it'll correspond bordered render
result placed on black backgrund. Actual border is stored
nowhere, which makes it only way to re-calculate disprect
for all other renders used in compo based on source. Not
so big deal actually.

Also needed to modify Cycles a bit, because before this
patch it used border settings from scene being rendered.
Now made it so render data is passing to external engines.

Using a property inside RenderEngine structure for this.
Not best ever design for passing render data, but this
would prevent API breakage. So now external engines could
access engine.render to access active rendering settings.

Reviewed by Brecht, thanks!
March 14, 2013, 07:25 (GMT)
tweaks to clang so blender can build with -Werror
Revision 21dc93d by Joshua Leung
March 14, 2013, 07:11 (GMT)
Quick fixes for previous commit
* Missing word in tooltip for operator
* Ensure that filters are set appropriately so that effect is visible
immediately
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021