Revision 60d3b8f by Nicholas Bishop April 13, 2012, 05:39 (GMT) |
Fix loading external MDisps, BMesh merge bug. * When converting mfaces to mpolys, load external MDisp data in, add CustomDataExternal struct to loopdata if needed. * Fix multires modifier's filepath RNA functions to use ldata rather than fdata. |
Revision e9358a3 by Campbell Barton April 13, 2012, 04:02 (GMT) |
bmesh api changes: - remove recently added BM_mesh_select_flush_strip(), functions purpose wasn't clear. - add BM_mesh_elem_hflag_disable_test(), BM_mesh_elem_hflag_enable_test() to match existing BM_mesh_elem_hflag_enable/disable_all(), these take a hflag to test before editing each element. This replaces the need for BM_mesh_select_flush_strip(). |
Revision 8c70caf by Campbell Barton April 13, 2012, 03:41 (GMT) |
fix for UV reveal (wasnt selecting all verts because check for unselected vert was incorrect after selecting the first face). |
Revision bdce58a by Thomas Dinges April 13, 2012, 00:04 (GMT) |
Code cleanup: * Remove some non used *_button_register functions, panels are done in python. * Remove do_node_region_buttons, was not used anymore. Fix: * Only show Grease Pencil panel in the Node editor, when there is a valid nodetree. |
Revision 2a5a465 by Brecht Van Lommel April 12, 2012, 17:34 (GMT) |
Fix part of #30917: solid + glsl + textured solid in texture paint mode did not show textured solid as it should, was using glsl instead. |
Revision 93f22cf by Ove Murberg Henriksen April 12, 2012, 16:01 (GMT) |
Revision 10a3335 by Brecht Van Lommel April 12, 2012, 15:23 (GMT) |
Fix related to #30917: wrong colors in cycles textured draw mode in some cases, missed call to glColorMaterial made glEnable(GL_COLOR_MATERIAL) behavior undefined. |
Revision d17efa6 by Campbell Barton April 12, 2012, 14:36 (GMT) |
improve mesh error prints and quiet a print in mesh_ensure_tessellation_customdata() which happened too often. |
Revision d7221fd by Thomas Dinges April 12, 2012, 13:58 (GMT) |
Scons / Windows release build configs: * Enable CUDA per default, only thing the builder has to do for release libs, is to specify BF_CYCLES_CUDA_NVCC. |
Revision c1d6a36 by Sergey Sharybin April 12, 2012, 13:33 (GMT) |
Fix #30919: Selection of multiple objects after EDIT MODE with MAYA PRESETS Keymap Issue was caused by operator presets. |
Revision 02cf29d by Brecht Van Lommel April 12, 2012, 12:23 (GMT) |
Fix: subsurf UV was not working correct with n-gons, it still had hardcoded 4 vertices per face code in some places. |
Revision b3bca9d by Antonis Ryakiotakis April 12, 2012, 12:11 (GMT) |
Minor code cleanup: Don't reference previous BMwEdgeringWalker after BMW_state_remove. Its memory is freed on that call. |
Revision 7004f92 by Antonis Ryakiotakis April 12, 2012, 12:03 (GMT) |
Fix: loopcut didn't stop on hidden faces |
Revision 405c9d9 by Campbell Barton April 12, 2012, 11:50 (GMT) |
code cleanup: remove unused KeyBlock.adrcode |
Revision 7db13b9 by Brecht Van Lommel April 12, 2012, 11:42 (GMT) |
Fix: cycles not using local 3d view camera when it is decoupled from the scene. |
Revision e6c45cc by Sergey Sharybin April 12, 2012, 11:37 (GMT) |
libmv: bundle new upstream version from own branch with rigid registration implementation Currently not used in blender code but is needed for some current work. |
Revision ca8fd66 by Campbell Barton April 12, 2012, 11:27 (GMT) |
bmesh shape key conversion. - remove print for impossible error. - add NULL check incase bmesh and mesh get out of sync (would crash if Basis key-block couldn't be found). |
Revision 115e762 by Campbell Barton April 12, 2012, 11:11 (GMT) |
bmesh exit editmode: when a mesh shape-key customdata layer exists but the shape-key-block isnt found, creating a shape key was allocated and inline - it didnt set the name or uid, Now use add_keyblock() as every other function does. |
Revision 4c9486f by Campbell Barton April 12, 2012, 11:05 (GMT) |
change add_keyblock() not to sort keyblocks by time since this can be a problem when using the function in lower level parts of the code, instead add add_keyblock_ctime() which sets time and sorts on absolute shape keys. |
Revision 4b8ab31 by Campbell Barton April 12, 2012, 09:10 (GMT) |
add in a check for Mingw so 4.5 or older will error out on build. |
|