Blender Git Commits

Blender Git commits from all branches.

Page: 2616 / 2888

June 7, 2014, 23:38 (GMT)
Moved index mapping to DerivedMesh.c for reuse

Can move to fixing constraints drawing in the morning now, reusing this part of code
June 7, 2014, 21:43 (GMT)
Intermediate code for fixing transform manip draw
June 7, 2014, 15:59 (GMT)
setup file is correct
June 7, 2014, 14:55 (GMT)
flags, mock sources and obstacles. handling of octaves
June 7, 2014, 14:38 (GMT)
wavelet vars added
June 7, 2014, 14:16 (GMT)
noise accounts for indentation
June 7, 2014, 11:45 (GMT)
Removed current evaluation "contexts".

Using per-component context data as a way of sharing results between
operations is cumbersome and it prohibits any parallelism between
operations. This was unfinished anyway and needs work.
June 7, 2014, 08:13 (GMT)
Fixes and workarounds for build problems: Windows 8.1, CMake 2.8.12.2, MSVC 2013

Cmake bug(?) workaround for zlib and png:
FindPNG.cmake calls find_package(zlib) and for some reason that redundant call
causes both zlib and png to not be found properly.
(Or, at least they complain, as this does not seem to cause a build error later)
Since zlib will be found by find_package(png),
it should be OK to not call find_package(zlib) explicitly.

Setting JPEG_NAME seems to be required by any version of MSVC, not just 9,
so changed check from MSVC09 to just MSVC

The proper Boost static libraries are not found unless the following variables are set:
set(Boost_USE_STATIC_RUNTIME ON) # prefix lib
set(Boost_USE_MULTITHREADED ON) # suffix -mt
set(Boost_USE_STATIC_LIBS ON) # suffix -s

Note: The debug versions of the opencollada libraries are missing from windows_v12,
but this cannot be worked around (except to disable opencollada for debug builds)
because the value of _ITERATOR_DEBUG_LEVEL is different between opencollada and the
rest of Blender, so cannot just use the release versions with a debug build.
The fix would be to add the _d versions to the library directory.

Set /SAFESEH:NO to fix linker error related to libjpeg
(not sure why libjpeg is not compatible with this flag)
Also quiets warning about ignoring /EDITANDCONTINUE due to having /SAFESEH enabled

Some typos in buildinfo.cmake fixed.

In buildinfo.cmake, trying to determine if a branch is modified when it
has no upstream branch kills the build, so added ERROR_QUIET where upstream
check was done.
June 6, 2014, 21:42 (GMT)
noise field name var
June 6, 2014, 21:39 (GMT)
Separate Solver creation function; 2D solver option implemented: UI + functionality
June 6, 2014, 19:42 (GMT)
Cycles: Use FMA in one more place, for Image Textures.
June 6, 2014, 19:02 (GMT)
Initial version, to create a Scalar Field U.
The tool is implement as a Modifier.
The features points are define with vertex groups.
June 6, 2014, 17:51 (GMT)
Cycles: Commiting some WIP code for a Quad BVH (CPU only)

* This is highly experimental, but commiting it makes is a bit easier to work on.
* Traversal code in geom_qbvh_traversal.h and geom_triangle.h based on code by Brecht, from the early Cycles days. I updated it, added some AVX2 code and integrated it into the current code base.
* Simple scenes such as cornell box etc. from our test files render ~7% faster, but bigger scenes are quite slower.
* The idea is to use traversal and improved builder code from Embree later.

Differential Revision: https://developer.blender.org/D579
June 6, 2014, 17:21 (GMT)
Cycles: Updates for AVX2 kernel after merge with master.
June 6, 2014, 17:07 (GMT)
Merge remote-tracking branch 'origin/master' into soc-2014-cycles
June 6, 2014, 08:03 (GMT)
Corrections to the last commit
June 6, 2014, 07:42 (GMT)
Merge branch 'manip-fix' into soc
June 6, 2014, 07:40 (GMT)
Corrections for getting the derived data for manip

Was getting the wrong DerivedMesh & didn't need customdata
June 6, 2014, 07:33 (GMT)
BGE: python API cleanup - bge submodules definitions
June 6, 2014, 06:43 (GMT)
BGE: python API cleanup - using PyDoc_STRVAR instead of static char*
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021