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
2011-10-22Cycles: svn merge -r40934:41157 ^/trunk/blenderBrecht Van Lommel
2011-10-20Cycles: let cmake show error when not finding openimageio on linux.Brecht Van Lommel
2011-10-20debug build option WITH_PYTHON_UI_INFO, so you can right click and edit the ↵Campbell Barton
python source for UI layout directly.
2011-10-17fix spelling mistakes in comments (and in some python error messages), ↵Campbell Barton
nothing to effect translations.
2011-10-11Cycles: add python render engine option to use new shading nodes or not, insteadBrecht Van Lommel
of hardcoded check for cycles. Also some other minor code cleaning tweaks.
2011-10-11Cycles: svn merge -r40411:40934 ^/trunk/blenderBrecht Van Lommel
2011-10-02* Removing libsamplerate from build systemsJoerg Mueller
* Enabling OpenAL for scons win64-vc in default config; Nathan or Sergey: please update the build bot to build with OpenAL!
2011-10-02minor cmake edits:Campbell Barton
- osx was defaulting to -O3. - clang wasnt detecting sse compiler args.
2011-10-02fix [#28786] Large enum lists display columns in inverted order (right to left)Campbell Barton
also cleared annoying intel c++ warnings.
2011-10-01cmake:Campbell Barton
- fix for cmake's SSE detection which would fail because of strict warnings and also had redundant cache setting. - was incorrectly initializing variables (own bad) - python was searching for libs on every run, now only do this if there not cached.
2011-10-01cmake: sse flags were being defined in 2 different placesCampbell Barton
2011-09-30sse flags for intel c++ compilerCampbell Barton
2011-09-30formatting edits onlyCampbell Barton
2011-09-30minor changes, dont append with cmake platform flags which is a string and ↵Campbell Barton
use enum values rather then ints in a few places.
2011-09-28Cycles:Thomas Dinges
* Use different Boost versions for x86/x64 windows. Will commit OIIO and Boost for x64 windows later, needs more testing.
2011-09-27fix for building on windows, clear some warnings tooCampbell Barton
2011-09-26comment -Wundef for cmake default flags, this causes too many warnings with ↵Campbell Barton
mingw.
2011-09-25whitespace cleanupCampbell Barton
2011-09-19Cycles: svn merge -r40266:40358 ↵Brecht Van Lommel
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2011-09-19cleanup endian handlingCampbell Barton
- define __BIG_ENDIAN__ or __LITTLE_ENDIAN__ with cmake & scons. - ENDIAN_ORDER is now a define rather than a global short. - replace checks like this with single ifdef: #if defined(__sgi) || defined (__sparc) || defined (__sparc__) || defined (__PPC__) || defined (__ppc__) || defined (__hppa__) || defined (__BIG_ENDIAN__) - remove BKE_endian.h which isn't used
2011-09-18Cycles: fix openimageio build issues on mac/linux.Brecht Van Lommel
2011-09-18added FindOpenImageIO cmake module.Campbell Barton
2011-09-17Cycles: svn merge -r39870:r40266 ↵Brecht Van Lommel
https://svn.blender.org/svnroot/bf-blender/trunk/blender Merging the node changes required a lot of conflict resolution, fixed the issues I could find but if you want stability you might want to wait a bit before updating.
2011-09-15Update build rules to deal with new gettext libraries.Sergey Sharybin
2011-09-12fix for error linking opencollada on linux.Campbell Barton
2011-09-12Cycles:Brecht Van Lommel
* Fix missing update when editing objects with emission materials. * Fix preview pass rendering set to 1 not showing full resolution. * Fix CUDA runtime compiling failing due to missing cache directory. * Use settings from first render layer for visibility and material override. And a bunch of incomplete and still disabled code mostly related to closure sampling.
2011-09-08patch from Uncle_Entity on IRC for fedora/colladaCampbell Barton
2011-09-06Cycles: set minimum required boost version lower.Brecht Van Lommel
2011-09-06fix link issues with MinGW - a substitute declaration(correctByteOrder) for ↵Antony Riakiotakis
itoln that was not present in MinGW was being used. Duplicated the declaration from <winsock2.h>(tried including but gave some errors) and added the appropriate link library, wsock32, according to MinGW documentation.
2011-09-06fix some complier warnings and add -Wundef to CMake's default GCC warnings.Campbell Barton
2011-09-04Compile fixes for MinGW, checked with basic initial setup, no CUDA, gcc 4.5.2.Antony Riakiotakis
OpenImageIO still gives link-time errors, will try to make a lib for MinGW, see if it is fixed.
2011-09-02Cycles:Brecht Van Lommel
* Fix crash in light path node * Fix struct alignment issue for cuda * Fix issue with instances taking up too much memory * Fix issue with ray visibility working incorrect on some objects * Enable OpenCL always and remove option, it has no dependencies so may as well * Refuse to load kernel if OpenCL version < 1.1, recent drivers are needed * Better error handling for OpenCL device * 3D views with rendered draw mode will now revert to wireframe on file load
2011-09-02Cycles: svn merge -r39669:39870 ↵Brecht Van Lommel
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2011-09-02Cycles: Remove warning of OpenCL not working from cmake, could be made ↵Thomas Dinges
enabled by default too, but will leave that for Brecht. :)
2011-09-01whitespace bge editsCampbell Barton
2011-08-27mistake in own recent commit broke op[encollada with mingwCampbell Barton
2011-08-24Cycles: linux build tweaks to allow static oiio/boost build.Brecht Van Lommel
Wiki build instructions have been updated to do static linking now: http://wiki.blender.org/index.php/Dev:2.5/Source/Render/Cycles/Building
2011-08-24opencollada find module. hopefully solves the problem where includes can in ↵Campbell Barton
an `/include` subdir or not.
2011-08-24Cycles: svn merge -r39457:39669 ↵Brecht Van Lommel
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2011-08-24cmake: skip rpath (paths to libs) for portable distrobutionCampbell Barton
2011-08-22FFmpeg library update:Sergey Sharybin
- Update scons/cmake rules to use new versions of libs/dlls. - Update rules for buildbot.
2011-08-22buildinfo is now quoted from the build systems, avoids stripping quotes on ↵Campbell Barton
startup. tested with linux/cmake linux/scons windows/cmake/mingw windows/cmake/msvc
2011-08-21new cmake doesn't consider CLang == GNUCC, set flags for clang explicitly.Campbell Barton
2011-08-21Cycles: fix some invalid memory access problems found by running the windows ↵Brecht Van Lommel
build in debug mode.
2011-08-16Cycles: svn merge -r39132:39457 ↵Brecht Van Lommel
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2011-08-16Cycles:Brecht Van Lommel
* add some (disabled) test code for using OpenImageIO in imbuf * link cycles, openimageio and boost into blender instead of a shared library * some cmakefile changes to simplify the code and follow conventions better * this may solve running cycles problems on windows XP, or give a different and hopefully more useful error message
2011-08-07fix for building ndof with cmake on osxCampbell Barton
2011-08-07Cycles: svn merge -r37957:39132 ↵Brecht Van Lommel
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2011-08-03enable NDOF by default with cmake again, but check if it can be found on ↵Campbell Barton
OSX, if not disable. I cant test this but at least if I made a mistake it will just not find the SDK and disable. an osx dev needs to test.
2011-08-03Cmake: compile with NDOF default off. This is a dependency on codeTon Roosendaal
that's not in our svn.