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-07-22added debug messagesRoman Pogribnyi
2014-07-22unused files removedRoman Pogribnyi
2014-07-22division on manta_pp and manta_full to switch between full module and pp filesRoman Pogribnyi
2014-07-21cleaned cmakelists fileRoman Pogribnyi
2014-07-21unused plugin files removedRoman Pogribnyi
2014-07-17removing source duplicatesRoman Pogribnyi
2014-07-17compiling & linking; unused paths deleted; compile flags for manta removedRoman Pogribnyi
2014-07-17depends added, unused list commands removedRoman Pogribnyi
2014-07-17non-existing files generated and preprocessedRoman Pogribnyi
2014-07-17paths for repositioned manta_pp folder correctRoman Pogribnyi
2014-07-17removing repository infoRoman Pogribnyi
2014-07-17fixed prep-not-found issue,files compilingRoman Pogribnyi
2014-07-16Fix generating temporary files with prep binary, also comment out include of ↵Jens Verwiebe
hgnfo header for now. - I just uncommented failing code - dunno whats up with hginfo, guess thats from external source versioncontrol of manta (?) - pls disable openmp, due this branch was not merged lately and misses omp cmake fixes I checked all is compiling fine now
2014-07-15correct prep binary location, debug messages instead of prep stepRoman Pogribnyi
2014-07-14library creation for Win systemsRoman Pogribnyi
2014-07-14removed pp files, preproessing during compiling stepRoman Pogribnyi
2014-07-12setting for debugging the linking issueRoman Pogribnyi
2014-07-11Compiling intermediate files for linking c++ code from bpy_interface.cRoman Pogribnyi
2014-07-08Big commit. Manta included in Blender Python. NOT ALL modules importedRoman Pogribnyi
2014-07-02*FAULTY* code, big commit: manta files, Cmake and Scons integration. Started ↵Roman Pogribnyi
work on full-cycle fluids
2014-06-17Manta vars initialization, support for inflow objs in setup file, *.obj ↵Roman Pogribnyi
export for bounding box[ -1,1]
2014-06-11Noise settings UIRoman Pogribnyi
2014-06-11UI for UVS countRoman Pogribnyi
2014-06-07Separate Solver creation function; 2D solver option implemented: UI + ↵Roman Pogribnyi
functionality
2014-05-30operator to generate setup file addedRoman Pogribnyi
2014-05-30use_manta property added to smoke DNARoman Pogribnyi
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-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-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 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)