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
2014-05-12Merge branch 'blender-tiles' of gitorious.org:blender-tiles/blender-tiles ↵tiles-schedulerJeroen Bakker
into blender-tiles Conflicts: source/blender/blenlib/BLI_compiler_compat.h source/blender/compositor/CMakeLists.txt source/blender/compositor/intern/COM_ChannelInfo.h source/blender/compositor/intern/COM_ExecutionSystem.cpp source/blender/compositor/intern/COM_MemoryBuffer.cpp source/blender/compositor/intern/COM_OpenCLDevice.cpp source/blender/compositor/nodes/COM_SocketProxyNode.cpp source/blender/compositor/operations/COM_CompositorOperation.cpp source/blender/compositor/operations/COM_ReadBufferOperation.h source/blender/compositor/operations/COM_RenderLayersProg.cpp
2014-05-12Initialize colors, vectors and values in RenderLayersProgJeroen Bakker
2014-05-12Tiles: synced with masterJeroen Bakker
2014-05-12Initialize colors, vectors and values in RenderLayersProgJeroen Bakker
2014-05-12Fix T40014: Broken shading with mirror modifier and auto smooth normals ↵Bastien Montagne
while hiding verts. Stupid mistake that showed only when there was some hidden faces (lnors should always be increased... even when the face is not drawned!).
2014-05-12Fix for typeinfo NULL pointer crash when initializing unknown node types.Lukas Tönne
Noticed by @bdancer on IRC. Happens e.g. when loading a file with pynodes which haven't been registered yet.
2014-05-12Cleanup: Remove unused hardcoded variables in the integrator.Thomas Dinges
Differential Revision: https://developer.blender.org/D525
2014-05-12Cleanup: Some else if for attribute code.Thomas Dinges
2014-05-12Fix T40142: Objects restricted in render/view don't produce duplis inLukas Tönne
with correct transform for Blender Internal. According to previous code the obmat must be modified even if the duplicated object itself is filtered later. TBH i have no idea how/why this works, but nobody else does either ... All obmats are restored after BI messes with them during render, so should be fine ...
2014-05-12A bit more helpful doc strings on the curve render resolution properties.Lukas Tönne
2014-05-12Fix for crash when doing "make local object+data" on an empty.Lukas Tönne
This commit added object data loop, without checking ob->data for NULL: rB6e5e3b73f37f952420d87a3d8acd07a7f68dd5a3
2014-05-12Fix crash removing objects rigid body constraintsCampbell Barton
2014-05-12Fix/Workaround T40102: RMB on vertex & GKey, acts as double-GCampbell Barton
2014-05-12Fix for numpad orbit ignoring auto-perspectiveCampbell Barton
2014-05-12Fix for rotate-around-selection in text-edit modeCampbell Barton
This wasn't supported and would print an error message.
2014-05-12Fix T40144: Font rendering problemsCampbell Barton
2014-05-12VFont: de-duplicate checks for next/prev handlesCampbell Barton
2014-05-12VFont: avoid allocating an array for storing total contours.Campbell Barton
2014-05-11Fix cycles baking code build errors with OpenCL on some platforms.Brecht Van Lommel
2014-05-11Fix T40117: cycles sobol RNG issue when disabling __CAMERA_MOTION__.Brecht Van Lommel
This doesn't affect any actual release code since camera motion blur is enabled.
2014-05-11Remove unneeded comment.IRIE Shinsuke
2014-05-11Quiet warningsCampbell Barton
2014-05-11Freestyle: Added handling of a user-specified name for creating a new line set.Tamito Kajiyama
2014-05-11Freestyle: Fix for the active line set index possibly invalidated after ↵Tamito Kajiyama
deleting a line set.
2014-05-11Freestyle: Added .new() and .remove() methods to the Linesets collection type.Tamito Kajiyama
2014-05-11Added BKE_freestyle_lineset_delete() by generalizing ↵Tamito Kajiyama
FRS_delete_active_lineset().
2014-05-11Code cleanup: comment typosCampbell Barton
2014-05-11CMake: use project name when generating project filesCampbell Barton
2014-05-11Quiet warnings with __CUDA_ARCH__ useCampbell Barton
2014-05-11Cycles / CUDA: Increase maximum image textures on GPU.Thomas Dinges
Instead of 95, we can use 145 images now. This only affects Kepler and above (sm30, sm_35 and sm_50). This can be increased further if needed, but let's first test if this does not come with a performance impact. Originally developed during my GSoC 2013.
2014-05-10Fix T40107: painting on a psd image crashes blender + style cleanup in fileDalai Felinto
The issue was that we can't assume we support the colorspace from the file. The reported file had an invalid colorspace in fact, which was leading to the segfault in Blender. Thanks for Sergey Sharybin for the help here.
2014-05-10Bake API: selected to active needs differentials or it renders black when ↵Dalai Felinto
bump/displacement (fix T40101)
2014-05-10Replace inefficient use of strstr with STRPREFIX macroCampbell Barton
2014-05-10Utility macros for linklist stack & asserts for bmeshCampbell Barton
2014-05-10Fix T40119, CUDA Toolkit version mismatchThomas Dinges
2014-05-10Fix T40113: Skinned meshes with non-animated shape keys crashes the BGE.Mitchell Stokes
2014-05-10BGE: Fixing shape key animations on meshes with no armature.Mitchell Stokes
Their transverts were not being updated after code changes for multi-threaded skinning.
2014-05-10BGE VideoTexture: Fix for loading PNG (and possibly other) files.Mitchell Stokes
2014-05-10Fix access violation when painting with tiled textured brushes +Antony Riakiotakis
airbrush + small brush size. Fast textured strokes meant that sometimes the update width (calculated from stroke distance) would be greater than the new ibuf width. This meant out of bounds access for the new ibuf. It's totally strange that I couldn't reproduce this issue on older versions since the logic here has not really changed much between versions.
2014-05-09Revert "Fix wrong job type used in cycles bake operator, could cause crashes."Dalai Felinto
This reverts commit 97823f604796fb008fef03653974473ece75d18e. I was to push a fix based on Brecht's solution (this commit) when he did the same. This fix is correct, but it misses replacing WM_JOB_TYPE_OBJECT_BAKE with WM_JOB_OBJECT_BAKE_TEXTURE in the rest of the file, which may lead to problems when calling the operator in a quickly sucession - WM_jobs_test also tests for the same type of JOB. I created WM_JOB_TYPE_OBJECT_BAKE elsewhere, may as well use it. Unless we revert 20c90ea and f194da3. I'm fine with either way, just trying to get master to work again ;)
2014-05-09Bake API: reports were used after being freed leading to random crashes (fix ↵Dalai Felinto
T40077)
2014-05-09Fix wrong job type used in cycles bake operator, could cause crashes.Brecht Van Lommel
Ref T40077.
2014-05-09Fix T39585: cycles motion vector pass problem with curves.Brecht Van Lommel
2014-05-09Fix cycles motion pass for hair curves showing a bit of motion when there ↵Brecht Van Lommel
isn't any.
2014-05-09Fix T40108: Copying materials leaves a shared Action datablock in nestedLukas Tönne
bNodeTree blocks. This was broken by rB6e99fb0 (own commit). I expected the `do_action` argument to be of no importance in this case due to node trees using material animation, but this is not the case. Anyway, this patch adds back a do_action to the BKE_libblock_copy_nolib function as well to restore the previous behavior.
2014-05-09Fix for random crashes when grabbing (rmb-drag) NLA stripsJoshua Leung
Although these crashes were quite sporadic, they seemed to happen most when rmb-dragging strips randomly in quick succession. The most likely cause seems to be a null check I accidentally took out during one of my commits yesterday.
2014-05-09Freestyle: Fix for dashed lines when applied to invisible stroke segments.Tamito Kajiyama
Dashed lines were resetting stroke segment visibility by mistake (making invisible segments visible, for example when applied to the results of square blueprint geometry modifier).
2014-05-09Freestyle: Fix for a wrong interpolation of stroke segment visibility.Tamito Kajiyama
2014-05-09Metaball transform, support active-only optionCampbell Barton
2014-05-09Code cleanup: styleCampbell Barton