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
path: root/intern
AgeCommit message (Collapse)Author
2012-10-09Cycles: camera motion blur enabled.Brecht Van Lommel
Still more work needed to get object motion blur ready.
2012-10-09Fix cycles task manager calling pthread_join() twice. I haven't seen any bugsBrecht Van Lommel
from this but best to fix anyway as it causes undefined behavior. Pointed out on irc by dslammu, thanks!
2012-10-09Bugfix [#32703] elbeem's isSimworldOk() will never return FALSEDaniel Genrich
Fixed as suggested by Campbell, thank you!
2012-10-08Fix #32815: cycles environment render as lamp crash with resolution >= 1024.Brecht Van Lommel
2012-10-07Revert fix for #31806, needs a better solution, can hang compiling some shaders.Brecht Van Lommel
2012-10-06Avoid unecessary minimizer calculations in dualconNicholas Bishop
* The minimize() function, which solves a least-squares problem, is only needed for sharp remesh mode, but was being calculated for smooth and blocks modes as well. Disabling this calculation when it's not needed gives a big performance boost.
2012-10-06Code cleanups for dualcon octreeNicholas Bishop
* Move InternalNode operators from Octree class into InternalNode struct * Constify various member functions
2012-10-06Cycles / OSL:Thomas Dinges
* OSL UI message did not show up when device type was GPU, but User Preferences were None. Also remove experimental check, more convenient for testing.
2012-10-06Fix for a case of 'static initialization fiasco' with OSL closure variables. ↵Lukas Toenne
The parameter lists are using OIIO::TypeDesc static standards, which are also static variables. With static OSL libraries these are not initialized when the closure parameter lists are initialized, so OSL rejects the closure types. Putting static initialization into functions works just as well, but ensures the OIIO::TypeDesc access is delayed until initialization is complete.
2012-10-06Fix for UV texture coordinate problem in cycles, after recent fix.Brecht Van Lommel
2012-10-05Fix part of cycles/osl light pass rendering, transmission still not correct.Brecht Van Lommel
2012-10-05Fix generated texture coordinate issue after "from dupli" option was added.Brecht Van Lommel
2012-10-05Fixed compilation error on widowsSergey Sharybin
Was caused by mixing up own C-API typedefs with OCIO's
2012-10-05Booleans: epsilon for planar checks seems a bit too small for single ↵Sergey Sharybin
precision math This could solve issue #32748: Boolean Modifiers Making unneeded edges?
2012-10-05* Fix Scons build when OCIO is disabled.Thomas Dinges
Still fails when it's enabled though (unresolved symbols).
2012-10-05Cycles: add "From Dupli" option for texture coordinate node. This gets theBrecht Van Lommel
Generated and UV coordinates from the duplicator of instance instead of the object itself. This was used in e.g. Big Buck Bunny for texturing instanced feathers with a UV map on the bird. Many files changed, mainly to do some refactoring to get rid of G.rendering global in duplilist code.
2012-10-05Fix #31806: cycles crash rendering a particular node setup with multiple mix/addBrecht Van Lommel
shader nodes.
2012-10-05Code cleanup: fix some clang checker warnings.Brecht Van Lommel
2012-10-04Color Management: fallback to stub ocio implementation in cases whenSergey Sharybin
ocio configuration file failed to load This solves issues with infinite NULL-checks to prevent crashes in such situations. Currently only happens if there's no configuration file at all, but could be tweaked further to fallback if this file isn't usable by blender.
2012-10-02correct some include dirs not being included as SYSTEM paths in cmake.Campbell Barton
2012-10-01Fix/workaround #31987: sample as lamp for environment textures not workingBrecht Van Lommel
with multi GPU when resolution > 128.
2012-10-01Fix #32725: cycles border render + panorama camera not working in viewport. ↵Brecht Van Lommel
It will still look a bit strange since the viewport can't actually render such panorama views, so the opengl drawn scene behind the border render will not match up.
2012-09-30Cycles UI Tweak: Thomas Dinges
* Don't disable Progressive option, just grey out.
2012-09-28Fix #32072: cycles shadow pass gave different results with/without emittingBrecht Van Lommel
materials present, even though it's only taking lamp shadows into account.
2012-09-28Fix cycles "synchronizing object" status being shown when it was already ↵Brecht Van Lommel
finished.
2012-09-28code cleanup: correct spellingCampbell Barton
2012-09-27Fix #32618: cycles multithreaded image loading could crash with CUDA, was aBrecht Van Lommel
threading issue that happens once every X frames.
2012-09-27pep8 cleanupCampbell Barton
2012-09-26fix for cycles/python script error in normal panelCampbell Barton
2012-09-26Color Management: restore abort() in cases of error and WITH_ASSERT_ABORT ↵Sergey Sharybin
enabled
2012-09-25Use ${OPENEXR_INCLUDE_DIR} instead of ${OPENEXR}/includeSergey Sharybin
There's no CMake symbol names ${OPENEXR} which lead to using /include as an include directory, which isn't correct.
2012-09-24OSL/cmake: the non-intrusive parts, so other os-maintainers can take code overJens Verwiebe
2012-09-24Fix #32638: mesh double sided normals option not available in any Cycles panel.Brecht Van Lommel
2012-09-23fix for incorrect declaration rna_Object_free_duplilist() in cycles.Campbell Barton
2012-09-22code cleanup: remove/comment unused definesCampbell Barton
2012-09-22Improvement to own commit r50810.Campbell Barton
Add an optional ghost argument to set the new mouse location when un-grabbing. - without this the mouse would flicker at the old location before moving to the new location - when using the color picker for eg.
2012-09-21Cycles:Thomas Dinges
* Change Addons Link to point to the manual instead of the dev documentation. * Add sm_30 to Linux build configuration.
2012-09-21* Fix for r50782, new "Geometry Data" Panel was missing in Cycles. Thomas Dinges
2012-09-21Cycles UI:Thomas Dinges
* Followup for r50550, added checks to the "Samples" Button in World and Lamp Context to properly show the correct options.
2012-09-20Fix #32579: Sequencer crash when changing render dimensionsSergey Sharybin
Memory limitor's queue could be affected when it's being iterated on enforcing limits -- that's because iteration could free color managed image buffers. Fixed by getting least priority element after every element was freed. Could be optimized a bit, but it anyway shouldn't be so slow due to specific of cache limiting and limit enforcing finish condition.
2012-09-20style cleanupCampbell Barton
2012-09-20code cleanup: cycles now uses system includes for boost/oiio.. etc, so we ↵Campbell Barton
dont get warnings from system headers.
2012-09-20style cleanupCampbell Barton
2012-09-20code cleanup: remove unused macros, commet some which may be useful later - ↵Campbell Barton
or good to keep for completeness. quieted some warnings and add flags -Wmissing-include-dirs and -Wno-div-by-zero to cmake/gcc
2012-09-20code cleanup: c++ - use empty() rather than size(), use prefix operators for ↵Campbell Barton
non-primitive types - recommended for non primitive types.
2012-09-20Fix #31888: cycles crashes using movie for image texture. This is not supportedBrecht Van Lommel
but should not crash either. This fix is more of a workaround, the crash seems to be in openimageio or one of the libraries it uses.
2012-09-19Fix #32018: non-progressive integrator crash.Brecht Van Lommel
2012-09-19Color Management: don't apply display transform on Non-Color imagesSergey Sharybin
Also don't color manage data buffers in texture painting. Makes it possible to view heights and normal maps in proper space and also paint on them without applying extra transformation.
2012-09-18Color management: fix crashes and memory leaks when using custom OCIO ↵Brecht Van Lommel
configuration Also fix some missing color spaces when loading some OCIO configurations, by falling back to scene linear if role is not found. There can still be some errors in the console, need to check this further. http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.64/Color_Management#OpenColorIO_Configuration
2012-09-18code cleanup: warningsCampbell Barton