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-09-11code cleanup: string c++ lib, defines for default string sizes and use m_ ↵Campbell Barton
convention for member naming.
2012-09-10Fix #32529: after tomato merge, cycles multi GPU render not using all GPUs withBrecht Van Lommel
F12 rendering.
2012-09-10Fix #32530: animation playback did not respect preview frame range if the ↵Brecht Van Lommel
current frame was before the start frame.
2012-09-10change to auto-opening menus so the first menu item in popup menu wont auto ↵Campbell Barton
open. This way we can do predictable key-shortcut-chaining. Eg. Shift+A, M, O --- adds a metaball cone. In editmode Ctrl+V, X, A --- Assign new vertex group.
2012-09-10OSL cmake cleanup:Lukas Toenne
* Removed unused lib and include directories (also one bad 'src' include that wouldn't work anyway) * Copied cmake library finding to APPLE and WIN32 sections. These may need some adjustment for their respective OS.
2012-09-10code cleanup: use typedef'd enum for block bounds types.Campbell Barton
2012-09-10make alphanumeric key shortcuts work for submenu's so you can chain keys ↵Campbell Barton
together to select items in a menu. eg: 'Ctrl+V, E, S' for - Vertex, Separate, Selection
2012-09-10Cleanup for OSL linking in cmake: Move cmake OSL library search and path ↵Lukas Toenne
definition from the cycles macro file to the top-level CMakeLists.txt. This makes the OSL_LIBRARIES and other variables accessible throughout Blender cmake scripts and especially in the creator module for linking libraries.
2012-09-10fix [#32384] Submenu hotkeys not working at all since 2.6xCampbell Barton
2012-09-10code cleanup:Campbell Barton
use an enum typedef for button types. it was quite annoying debugging UI code since the defines are bit-shifted. GDB would show but->type as 13824 and blender define was (27 << 9). Now but->type shows as a humanly readable names.
2012-09-10missing include in own recent commitCampbell Barton
2012-09-10fix [#32518] Vertex slide crash sometimes.Campbell Barton
Undo would leave BMEditMesh->me pointer NULL, this would likely crash EDBM_verts_mirror_cache_begin() too. Rather then restore 'me', remove the pointer altogether and use BMEditMesh->ob->data to save us having to keep track of 2 pointers.
2012-09-10code cleanup: use BMEdit_FromObject() rather then me->edit_btmesh in more ↵Campbell Barton
places.
2012-09-10code cleanup: use more specific argsCampbell Barton
2012-09-10when pressing `play` report when the first frame can't be found.Campbell Barton
2012-09-10code cleanup: use single define for undo string size, was 64 mostly, but 512 ↵Campbell Barton
in the UI.
2012-09-10style cleanupCampbell Barton
2012-09-10fix for own error in r50482.Campbell Barton
2012-09-10style cleanupCampbell Barton
2012-09-09Fix #32513: incorrect color management in Material draw mode for Cycles.Brecht Van Lommel
2012-09-09fix [#29072] Color pickers don't close properly when moving the mouse awayCampbell Barton
instead of checking if the mouse is over another button to exit the popup. Just check if the mouse is outside the rect-union between the button and the popup.
2012-09-09style cleanup:Campbell Barton
also remove some redundant conversions int -> short -> int
2012-09-09fix for security flaw CVE-2008-1103, ref BZ #855092 on ↵Campbell Barton
https://bugzilla.redhat.com patch provided by Jochen Schmitt, made some minor edits.
2012-09-09minor improvements to saving quit.blend, print the OS error if the file ↵Campbell Barton
fails to be created or written.
2012-09-08fix for error in own recent commit: do not hide alpha in HSV and Hex modesSv. Lockal
2012-09-08style cleanupCampbell Barton
2012-09-08style cleanupCampbell Barton
2012-09-08== FFMPEG ==Peter Schlaile
This fixes [#32399] VSE doesn't show last 3 frames of Quicktime movie. Some decoders store frames internally until EOF. So one has to feed the decoding engine with empty packets after EOF until all frames could be extracted properly.
2012-09-07New i18n font file for Blender, now including Hebrew charset!Bastien Montagne
2012-09-07Adding Hebrew language.Bastien Montagne
Note: looks like we do not have hebrew chars in current font... More FontForge fun ahead. :/
2012-09-07initial retina support for osx \ to take effect you must perhaps logout/in ↵Jens Verwiebe
\i prefer in terminal: /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -v -f
2012-09-07Fix for Cycles (CUDA) compilation (again ...). Moved the AttributeStandard ↵Lukas Toenne
enum typedef and the attribute_standard_name mapping function to util_attribute/util_types headers, so they can properly be used by kernel and render files alike. This should avoid any std C includes which are not available in CUDA. Thanks to Sergey for help!
2012-09-07Fix for order of creating mesh and filling in SculptSessionSergey Sharybin
This would use proper draw_pbvh for initially calculated PBVH. Wasn't harmful since this flag used to be updated form update_mesh_elements, but it's still better to have things consistent all over.
2012-09-07minor fix for previous commit. ripping a vert-edge connected to a face would ↵Campbell Barton
always choose the face even if the mouse is closer to the edge, now check both edges and faces when ripping from a non wire vertex
2012-09-07minor improvements to ripCampbell Barton
- rip tool didnt select the best edge to rip for wire verts (no connected faces) - ripping one vert with 2 edges connected didnt work.
2012-09-07fixes for weight paint mode:Campbell Barton
- sample weight didnt work when the object was transformed. - sample weight didnt work when vertex selection was enabled. - 'All faces' option is used by weight paint mode, but there was no UI access. add ED_mesh_pick_face_vert(). which uses the face selection buffer but returns the closest vertex.
2012-09-07fix Shift+LMB select when in weight-vertex-select mode. (it was mixing up ↵Campbell Barton
vert/face index values and didnt work at all)
2012-09-07remove makeDerivedMesh from ED_mesh_pick_face(), this was added 44256 (bmesh ↵Campbell Barton
merge), but is pretty bad (rebuilding entire derived mesh to pick a face), tested with subsurf modifier, sintel mesh - it works ok without it. Also - other select modes like border-select dont do this, so looks safe to disable.
2012-09-07code cleanup: header had many incorrect sections for function/file, also ↵Campbell Barton
rename mouse_mesh() --> EDBM_select_pick()
2012-09-07code cleanup: move vertex and face picking functions into meshtools.cCampbell Barton
2012-09-07code cleanupCampbell Barton
2012-09-07fix [#30063] Weight Paint + Pose Mode: [m] key does not toggle Face ↵Campbell Barton
Selection Masking disallow some pose operators when weight paint mode is enabled.
2012-09-06Resolve CUDA kernel compilation errorSergey Sharybin
Instead of including util_string.h which in fact also defines some symbols from util_string.cpp include STL's string header and directly use std::string.
2012-09-06Fix cycles continuously updating when creating a driver for a scene property,Brecht Van Lommel
like driving integrator seed with #frame. The scene drivers are evaluated continuously, which would be nice to fix but complicated, now it compares the RNA value to see if it actually changed, and avoids the update in that case, which is a useful optimization by itself. (merged from tomato branch)
2012-09-06Fix wrong cycles tile size in viewport, could affect performance a bit.Brecht Van Lommel
2012-09-06fix for error in own recent commitCampbell Barton
2012-09-06make freeing sequencer strip without cache an option only exposed within ↵Campbell Barton
sequencer.c
2012-09-06Cycles compiler fixes related to OSL changes:Lukas Toenne
* reverted r50430 * removed 2 util_params.h includes from r50428, these were causing trouble with OIIO in CUDA compilation. The purpose of these was to define the ustring type, but can just use the standard string type from util_string as well.
2012-09-06fix [#32502] Shift + V Vertex slide doesn't work for x-mirror editCampbell Barton
2012-09-06fix for crash in sequencer introduced with recent cache addition,Campbell Barton
- running undo with metastrips would crash immediately. - freeing a strip without a scene would crash (clipboard does this).