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
2012-11-03code cleanup: cmake - add missing headers, remove directories from source ↵Campbell Barton
listing. also remove logImageLib.c - empty file.
2012-11-03Cycles OSL: refactoring and fixesBrecht Van Lommel
* Moved kernel/osl/nodes to kernel/shaders * Renamed standard attributes to use geom:, particle:, object: prefixes * Update stdosl.h to properly reflect the closures we support * Fix the wrong stdosl.h being used for building shaders * Add geom:numpolyvertices, geom:trianglevertices, geom:polyvertices attributes
2012-10-29style cleanup: also quiet harmless compiler warning.Campbell Barton
2012-10-25Fix for cmake syntax error: LLVM_VERSION string was not configurable, ↵Lukas Toenne
causing linker errors for people not using the default LLVM version (3.0 on Linux, 3.1 on OSX).
2012-10-22remove LOD_Decimator (c++ decimator), now replaced by bmesh decimator. also ↵Campbell Barton
remove CTR c++ classes that are no longer used.
2012-10-21style cleanup: trailing tabs & expand some non prefix tabs into spaces.Campbell Barton
2012-10-20Fix for r51447 (my CMake 2.8.9 did not like it, looks like with quotes it ↵Bastien Montagne
suites it...).
2012-10-20dont ise -Wuninitialized on gcc 4.2 and older, it gives annoying warnings.Campbell Barton
2012-10-20switch order cmake includes warning flags so its possible to disable themCampbell Barton
2012-10-20Cycles OSL: some build system tweaks to avoid global includes and definitions,Brecht Van Lommel
which ensures there is no conflict with other libraries, and avoids full rebuild when toggling OSL on/off.
2012-10-11OSX/cmake: after osl librenew with globals patch, forcing oiio is not longer ↵Jens Verwiebe
needed
2012-10-08add option to build without blenders default avi codec.Campbell Barton
2012-10-06Force USE_QTKIT for osx 64bitJens Verwiebe
2012-10-06Fix for WITH_LLVM cmake option: When using WITH_CYCLES_OSL this option is ↵Lukas Toenne
forced ON, but this change was not cached yet. Thanks to Jens Verwiebe for providing this fix.
2012-10-06Fix for incomplete loading of liboslexec static library. This is needed in ↵Lukas Toenne
order to provide the osl_allocate_closure_component function for LLVM.
2012-10-06Better support for LLVM linking, needed for static OSL library.Lukas Toenne
This adds cmake code for LLVM on linux and updates the cmake code used for OSX. LLVM is linked like other external libraries now, by using the setup_liblinks and setup_libdirs macros instead of the PLATFORM_LINKFLAGS variable. The use of llvm-config for getting a list of libraries can also be simplified quite a bit. Caching the LLVM_DIRECTORY and LLVM_VERSION strings could be nicer though.
2012-10-04OSX/cmake: fix warning: go back to initial state, not the right way to get ↵Jens Verwiebe
rid of this
2012-10-04OSX/cmake: fix warning: second tryJens Verwiebe
2012-10-04OSX/cmake: fix warning: -Wuninitialized is not supported without -O, in ↵Jens Verwiebe
debug-mode
2012-10-03fix for cmake constructing an invalid include path.Campbell Barton
2012-10-01CMake: disable some warnings on mac that cause prints in nearly every file, andBrecht Van Lommel
remove duplicate -Wundef entries.
2012-10-01OSX/cmake: simplificate compile conditions and silence lot of CLANG warningsJens Verwiebe
2012-09-28code cleanup: correct spellingCampbell Barton
2012-09-27incorrect spelling in commentsCampbell Barton
2012-09-25fix osx/ols compile after #50876Jens Verwiebe
2012-09-25Unification of names for the BOOST library directory in Windows 32 and win64Alexander Pinzon
2012-09-25Boost directories were not properly configured to vc2010.Alexander Pinzon
Opencolorio directories and openimageio not work as you would expect macro
2012-09-25fix cmake in case the boostlibs don't contain boost_python3 refactor ( was ↵Jens Verwiebe
possibly not correct)
2012-09-24fix cmake in case the boostlibs don't contain boost_python3 yetJens Verwiebe
2012-09-24OSL/cmake: the non-intrusive parts, so other os-maintainers can take code overJens Verwiebe
2012-09-20add back -Wundef for g++, also correct clang warnings and add ↵Campbell Barton
-Wunused-macros warning.
2012-09-20ffmpeg was adding an include `just incase`, without a cmake find module here ↵Campbell Barton
- just check if the dir exists.
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-18-Wnonnull flag is not for C++. I think we all know it by now, time toAntony Riakiotakis
get rid of it.
2012-09-18code cleanup: use system includes for cmake, otherwise warnings get printed ↵Campbell Barton
in headers.
2012-09-17* Enable opencolorio for scons/mingw32 (coming very soon)Antony Riakiotakis
* Change names of libraries for mingw32 boost to 1.49
2012-09-16use the format attribute in more places, disable X11 options when building ↵Campbell Barton
with GHOST_SDL
2012-09-16fix for error in recent commit (made function static that shouldn't have ↵Campbell Barton
been), add extra gcc warnings to cmake.
2012-09-15Color Management, Stage 1: Initial OpenColorIO library integrationSergey Sharybin
This commit integrates support of OpenColorIO library into build systems. It also contains C-API for OpenColorIO library which could be used by Blender. CMake has got find rules familiar to OpenImageIO's one which makes it easier for build system to find needed libraries and includes. Scons only could use explicitly defined paths to libraries and includes. C-API would be compiled and Blender would be linked against C-API and OpenColorIO but it wouldn't affect on Blender behavior at all. OpenColorIO could be disabled by setting up WITH_OCIO to Off in CMake and setting WITH_BF_OCIO in Scons.
2012-09-15quiet -Wmissing-prototypes warnings, and enable this warning by default for ↵Campbell Barton
C with gcc. helps for finding unused functions and making functions static, also did some minor code cleanup.
2012-09-14Disable legacy compositor by defaultSergey Sharybin
2012-09-10OSL cmake cleanup:Lukas Toenne
* Removed unused lib and include directories (also one bad 'src' include that wouldn't work anyway) * Copied cmake library finding to APPLE and WIN32 sections. These may need some adjustment for their respective OS.
2012-09-10Cleanup for OSL linking in cmake: Move cmake OSL library search and path ↵Lukas Toenne
definition from the cycles macro file to the top-level CMakeLists.txt. This makes the OSL_LIBRARIES and other variables accessible throughout Blender cmake scripts and especially in the creator module for linking libraries.
2012-08-22Turn OpenMP off for MinGW64. I thought it behaved correctly in new compiler ↵Antony Riakiotakis
builds but unfortunately it looks like there is some issue still which mostly shows when openmp threads stop. This causes crashes after rendering with subsurf, multires, when calculating fluids and possibly when other functionality is used as well. This should make MinGW64 builds quite stable again :)
2012-08-20option to build without the legacy compositorCampbell Barton
2012-08-18cmake option to build without iksolverCampbell Barton
2012-08-14Cmake / Windows:Thomas Dinges
* Fix for Boost lib dir when using msvc 2010.
2012-08-14Cmake / Windows:Thomas Dinges
* Fix for Python include path when using msvc 2010.
2012-08-09Cycles / Cmake:Thomas Dinges
* When CUDA building is enabled, build sm_30 kernel as well.
2012-08-07OSX/cmake: refactoring of setting endianess defines, this fixes compile of ↵Jens Verwiebe
builds with endianess other than the buildmachine and avoids also failing configuration with xcode 4.4 due not supporting big_endian archs anymore