Revision 39f0fbe by Campbell Barton May 29, 2013, 13:41 (GMT) |
fix for own regression in bridge tool since rewrite, UV's were not correctly copied over. |
Revision 902dbbe by Lukas Toenne May 29, 2013, 12:43 (GMT) |
Replacement for the "Active Node" panel in node editor properties sidebar. This panel is now defined in space_node.py instead of node_buttons.c. The properties have been split up into generic properties (name, label), custom colors (closed by default) and input parameters (extra options + unlinked input socket values). |
Revision 9eb93a9 by Lukas Toenne May 29, 2013, 12:43 (GMT) |
Node options draw function fix for C nodes: use the default button draw function as a fallback if no extended draw function is defined. |
Revision 0b51ecb by Campbell Barton May 29, 2013, 11:55 (GMT) |
workaround for search menu enum using freed python scripts (py api limitation). |
Revision 9e05f65 by Sergey Sharybin May 29, 2013, 11:49 (GMT) |
Make sure bool will always have the same size in C and C++ There were an issues with data structures defined in headers and being used by both C and C++ on systems with stdbool unavailable. This happened because bool in this case will be defined as unsigned int, which is 4 bytes. But C++'s bool is only 1 byte and this lead to alignment issues. Now bool is always 1 byte, also made sure there's no situation like bool foo = BitField & BitFlag, which could give overflow issues. Use (BitField & BitFlag) != 0 instead. Fixes #35553: Compositor broken (Backdrop & Preview) |
Revision e99801d by Campbell Barton May 29, 2013, 01:28 (GMT) |
fix for confusion switching active group when running mirror (would swich back when toggling editmode if a pose bone was selected). |
Revision 7c97a95 by Campbell Barton May 29, 2013, 01:21 (GMT) |
improve topology mirror, increase chance of finding unique match. |
Revision 7325919 by Campbell Barton May 29, 2013, 00:00 (GMT) |
tweaks to vertex weight limit - double check def_nr is valid (rare cases it is). - usability, report how many weights are removed. |
Revision c1619a5 by Campbell Barton May 28, 2013, 23:13 (GMT) |
fix for own mistake in recent change to use defvert layer offsets. |
Revision de3686a by Campbell Barton May 28, 2013, 23:07 (GMT) |
fix [#34851] "UnitSettings.scale_length" not beeing calculated the same way for all objects |
Revision abfee74 by Campbell Barton May 28, 2013, 20:35 (GMT) |
correct error in r57092 with scons. |
Revision 04d54f8 by Sergey Sharybin May 28, 2013, 20:19 (GMT) |
Correction for strict compiler flags. |
Revision b5cb9e8 by Campbell Barton May 28, 2013, 19:42 (GMT) |
add BLI_sys_types.h |
Revision 149b77f by Campbell Barton May 28, 2013, 19:38 (GMT) |
don't use globbing for freestyle cmake file. |
Revision 225c5fe by Campbell Barton May 28, 2013, 19:35 (GMT) |
move BLO_sys_types.h -> BLI_sys_types.h (it had nothing todo with loading) remove MEM_sys_types.h which was a duplicate. |
Revision 60befcd by Alexander Kuznetsov May 28, 2013, 18:36 (GMT) |
Revision 3128a47 by Lukas Toenne May 28, 2013, 18:10 (GMT) |
Quick addition to the node sidebar "Active Node" panel: draw input socket values in addition to non-socket settings. This makes it possible to actually use the sidebar for all node settings without having to go to the main area for changing socket values. This patch should be considered a temporary solution. The Active Node panel is a horrible mess and needs to be split up and cleaned. It should probably be moved to python as well. |
Revision 3223518 by jens verwiebe May 28, 2013, 17:38 (GMT) |
QTKIT: as per Ideasman's suggestion, include BLI_utildefines.h in sourcefiles where needed and reorder (must be before BKE_global.h) |
Revision 27b8ea4 by Brecht Van Lommel May 28, 2013, 17:37 (GMT) |
Cycles OpenCL: disable requirement of enabling Experimental, environment varibale already adds an extra step. Also list all features for OpenCL AMD to make testing easier. |
Revision f4d3fdf by jens verwiebe May 28, 2013, 16:57 (GMT) |
Since have_quicktime is now a bool, need extra include for stdbool |
|
|
|


Master Commits
MiikaHweb | 2003-2021