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
2013-08-31mempool internal change, use unsigned ints where possible (less overhead),Campbell Barton
also quiet compiler warning for BLI_LINKSTACK_FREE macro.
2013-08-31use CMAKE_DL_LIBS rather then linking libdl directly.Campbell Barton
added to cycles standalone too.
2013-08-30Fix for [#36610] The new sky model produces strange resultsThomas Dinges
* Clamp theta sky coordinates, to prevent a negative solarElevation. Note: This means that you cannot get absolute night with the new model, but this is not supported anyway. So when you reach the maximum sunset, use the World Strength to further decrease the light.
2013-08-30Cycles / Standalone:Thomas Dinges
* Standalone can now be compiled without the GUI, making the glut dependency optional. Added WITH_CYCLES_STANDALONE_GUI cmake flag.
2013-08-30Fix #36609: glsl materials with reroute nodes not working correct.Brecht Van Lommel
2013-08-30Fix #36611: cycles issue loading png file with 2 channels.Brecht Van Lommel
2013-08-30quiet compiler warningsCampbell Barton
2013-08-30Cycles Standalone: Thomas Dinges
* Fix compiler warning, == / = mismatch.
2013-08-30Some knife fixes. Avoids duplicating verts; better handling of cut-through ↵Howard Trickey
ortho. Now cut lines detect vertices that they pass (almost) exactly over and snap to them, to avoid making verts vert close to other ones. Added radius arg to BKE_bmbvh_ray_cast so that can detect an obscuring face when the ray might otherwise go exactly between two triangles. Needed an isect_line_tri_epsilon function for similar reason. Fixes last part of bug #35002. Other knife bugs still present but getting this commit in now before continuing bug fixing.
2013-08-30Cleanup, bitflags as bitshift ops, and some formating...Bastien Montagne
2013-08-30execute bisect immediately (without starting modal input) if the plane is ↵Campbell Barton
already set or if there is no 3d view available.
2013-08-30minor ui editsCampbell Barton
- move addon refresh button into header - uilist, use icon for sorting by name (gives more room for name, icon is used in fileselector for same purpose). - rename orderby to sort in rna and flag names. - simplify BKE_nurb_handle_calc_simple
2013-08-30refresh paint_common_properties file on script refresh, found by Sebastian ↵Antony Riakiotakis
Koenig, thanks
2013-08-30Followup for rev59629.Sergey Sharybin
Condition in pose mode seemd to be inverted, which made it so pose mode could not be entered.
2013-08-30Fix [#36600]: Smoke subframes not working with initial velocityMiika Hamalainen
2013-08-30Fix for [#36599] Freestyle: Line thickness modifier with certain blend types ↵Tamito Kajiyama
incorrectly calculated. The inner/outer thickness values were separately blended by Multiply, Divide and other binary operators, which resulted in the wrong thickness values reported in the issue. The operations must be applied to the sum of the inner and outer thickness values. Also the Minimum and Maximum operators were not properly implemented (one of the two operands were ignored by mistake).
2013-08-30Fix #36605: Segfault when border selecting markers in the "graph" mode when ↵Sergey Sharybin
no track is active
2013-08-30Attempted fix for #36569: couldn't unmap memory errors on Windows. The ↵Brecht Van Lommel
guardedalloc optimizations were not entirely thread safe for mmap.
2013-08-30Cleaning up some prints related to SDL.Mitchell Stokes
2013-08-30Adding support for enabling/disabling vsync to Ghost_SDL.Mitchell Stokes
2013-08-30Allowing the BGE to build with SDL2. I'm not sure if this is the correct fix ↵Mitchell Stokes
yet, but at least it builds.
2013-08-30Fix #36602: crash with freestyle and full sample render of empty render layer.Brecht Van Lommel
2013-08-30Fix part of #36594: 16 bit tiff not loading with correct color space in cycles.Brecht Van Lommel
2013-08-29don't show screen-space-line start/end points in operator redo panel.Campbell Barton
2013-08-29mesh bisect can now be defined with mouse inputCampbell Barton
(using cursor + numeric values was too clumsy for defining orientation). once the cut is done numeric input still works as before
2013-08-29correct own error r59619 (changes made to patch, adding handle recalculation ↵Campbell Barton
which is needed after splitting).
2013-08-29Optimizations by Campbell, thanks!Bastien Montagne
2013-08-29Fix building under windows after r59631 (grr, sorry :/ ).Bastien Montagne
2013-08-29UIList: update examples and templates.Bastien Montagne
2013-08-29Support transformation around 2D cursor in movie clip editor.Sergey Sharybin
2013-08-29Last uiList patch (for now!): filtering and reordering of shown elements.Bastien Montagne
Thanks to Brecht for the reviews. :) This commit adds a show/hide extension below each uiList, containing by default an option to filter and/or reorder items by name (and to reverse those filtering and reordering). Each derived uiList class in Python can define more specific filtering by implementing callbacks: the draw_filter() function to draw options in UI, and the filter_items() function to effectively filter/reorder items. Note: the advanced options for vgroups shown as "proof od concept" in patches do not go in trunk for now, we have to find a better way to get those vgroups info for UI code, we can't afford to loop over each vertex here! And doc (release notes and uiList example) is still to be updated, will do this in next days.
2013-08-29Use static odifier for non-public functions in new sky model.Sergey Sharybin
2013-08-29follow up on r59628, setting modes now ensures that other modes exit first,Campbell Barton
this was only done in some cases before and it was possible to enable weightpaint+sculpt at the same time when enabling sculpt by directly running the mode switching operator. add generic function to ensure a compatible mode before entering the new mode (added to each operators exec function)
2013-08-29fix [#34462] Crash when switching modes via mix of TAB and spacebar menuCampbell Barton
2013-08-29fix for glitch where the text editor could be clamped to scroll above line 1 ↵Campbell Barton
(would flicker on scroll).
2013-08-29use os.remove rather then unlink (the same but all other areas use 'remove')Campbell Barton
2013-08-29default blend file name setting (untitled.blend) length check wasn't ↵Campbell Barton
correct, move to generic function BLI_ensure_filename().
2013-08-29BGE: The WM_OT_blenderplayer_start addon now saves a copy of the current ↵Mitchell Stokes
blendfile with a trailing '~' to keep paths intact. An unsaved file will still go to the tmp directory. This file is deleted when the blenderplayer process exits.
2013-08-29don't replace the extension with '.blend' in save code since the file ↵Campbell Barton
selector already ensures this, needed so python scripts can save as temp filenames.
2013-08-29fix [#36570] Changing the filename of a image strip doesnt refresh sequencerCampbell Barton
was casting a StripElem as a Sequencer struct.
2013-08-29edits to curve operatorCampbell Barton
- remove delete-all option (users can just select all and delete as with all other modes). - remove CALLOC_STRUCT_N macro. - CURVE_OT_delete define a dynamic enum rather then a custom invoke menu function.
2013-08-29code cleanup: curves, replace magic numbers for enums.Campbell Barton
2013-08-29patch [#36336] Split operator for curves and surfacesCampbell Barton
by Kevin Mackay (yakca) The operator follows roughly the same behaviour as the split operator for a mesh (Ykey).
2013-08-29Fix #36598: blender render crash baking and then doing a full sample render.Brecht Van Lommel
2013-08-29micro-optimization, avoid checking is_power_of_2_i once in power_of_2_max_iCampbell Barton
also whitespace edit.
2013-08-29correct own recent commit, malloc_usable_size() isn't valid for mmap()'d memory.Campbell Barton
2013-08-29Fix #36595: file browser sorting with link/append would mix together .blend ↵Brecht Van Lommel
files and directories instead of keeping them separate like regular file browse.
2013-08-28Some tweaking to uiList dragsize, to make it more reactive to very quick moves.Bastien Montagne
Note that, even though not officialy supporting non-UI_UNIT_Y height items (other point like scrollbar size would faill too), we try to maintain a not-that-bad behavior in this case, which implies a bit of black magic (esp. as our ref point is the bottom of the list, which moves when it is resized :/)...
2013-08-28Fix #36555: preview render in properties editor did not get cancelled andBrecht Van Lommel
restarted fast enough on resizing the editor, especially noticeable with e.g. luxrender which does a progressive refining render.
2013-08-28Cycles: change Gaussian subsurface scattering falloff to be more similar toBrecht Van Lommel
the Cubic falloff, see here for details. http://wiki.blender.org/index.php/Doc:2.6/Manual/Render/Cycles/Nodes/Shaders#Subsurface_Scattering