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-11-07CMake: Boost and OpenImageIO building support (unused still).Brecht Van Lommel
2011-11-04correct some warnings, also sensor_x was being paassed to ↵Campbell Barton
object_camera_matrix(...) for x and y args, looks like an accident
2011-11-03cmake could ignore defines for python lib/include passed from the command ↵Campbell Barton
line if both weren't defined.
2011-11-02quiet some warnings.Campbell Barton
2011-11-01name qtcreator projects based on branch names (if svn is found and its a ↵Campbell Barton
branch), was too confusing with multiple IDE's open calling all projects 'Blender'.
2011-11-01hopefully fix problem with cmake on osx (older gcc version)Campbell Barton
2011-10-30correct flags for older GCC's which dont suppport -Wno-deprecated-declarations,Campbell Barton
detect if the flag is supported before use
2011-10-27tweak remove_strict_flags so it can be used with gcc's -WallCampbell Barton
2011-10-25update is_c() utility function to include '.cc' and '.inl' files.Campbell Barton
2011-10-24Some small fixes and changes:Sergey Sharybin
- Add *.cc files to qtcreator project as well as .cpp and .cxx (would be needed for correct generating projects with libmv library). - Added negate_v2 and negate_v2_v2 functions. They'll be needed for camera tracking project. - Fixed issue with generating proxies from 32bit images. (generated jpg-s opened fine in blender, but were dark in osx viewer). - Marked unused arg in indexer as UNUSED.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-17docs / clenup (no functional code changes)Campbell Barton
- added API examples for mathutils.Color/Euler/Quaternion/Matrix. - corrected own bad spelling matricies --> matrices. - minor pep8 edits. - update CMake ignore file list.
2011-10-14cmake: use cached results for RPM build & dont print annoying rpmbuild ↵Campbell Barton
missing on every re-run of cmake.
2011-10-14cmake's find glew wasnt working right - if glew wasnt found installing the ↵Campbell Barton
package would not help since the not-found result was cached.
2011-10-13correct collada lib linking order (wasnt building for me), and sphinx doc ↵Campbell Barton
syntax warning.
2011-10-02remove find samplerate module, use -msse2 flag for intel c++ since its ↵Campbell Barton
supported.
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-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-30fix for odd linking error with ffmpeg.Campbell Barton
2011-09-30sse flags for intel c++ compilerCampbell Barton
2011-09-30formatting edits onlyCampbell Barton
2011-09-30removing duplicate library linking from cmake, fingers crossed that this ↵Campbell Barton
wont break on other systems (works here).
2011-09-26pep8 cleanup and fix for keymap test operator from my own recent fix.Campbell Barton
2011-09-26wm.py needs import os in some of its execute funcs + now we can have ↵Dalai Felinto
blender2.60x version :) I guess someone did a cleanup in the file and forgot to test "add an Add-On" ;) + a bug I found while studying the cmake files
2011-09-22use the systems number of processes for running static checks - multiple jobs.Campbell Barton
2011-09-20pep8 update & some minor cmake edits.Campbell Barton
2011-09-20changes for materials to treat them as shorts not int/chars (since they are ↵Campbell Barton
stored as shorts intermally) - converting nurbs to mesh was casting the material to unsigned char. - subsurf was casting to char, then int -> short in a loop. - have material functions take & return shorts.
2011-09-19remove unused arg & some style edits on radish merge, also reverted odd ↵Campbell Barton
change that somehow got in to cmake preset.
2011-09-18svn merge -r40197:40311 ^/trunk/blenderCampbell Barton
2011-09-16SVN maintenance.Guillermo S. Romero
2011-09-16- fix for memory leak in findFreeNavPolyIndex()Campbell Barton
- also correct own script for running cppcheck.
2011-09-16use replace 0 with NULL for pointers, set some functions staticCampbell Barton
also fixed own errors in recent static check commit.
2011-09-16new convenience makefile targets for static source code cheching: ↵Campbell Barton
check_splint/check_sparse/check_cppcheck
2011-09-14svn merge -r40179:40195 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-09-14removed nodes from CMake's BLENDER_LINK_LIBS, rewrote find-pcre using own ↵Campbell Barton
template.
2011-09-14- removed some duplicate library links from cmake (which were needed because ↵Campbell Barton
of bad level calls) - FindXML2 we had copied from another project was always running and not using cached value, rewrote based on template used for most of our other find modules which makes use of 'FindPackageHandleStandardArgs' - mark statuc collada libs as advanced.
2011-09-13svn merge -r40000:40179 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-09-13svn merge -r39900:40000 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-09-13svn merge -r39558:39800 https://svn.blender.org/svnroot/bf-blender/trunk/blenderCampbell Barton
2011-09-12fix for error linking opencollada on linux.Campbell Barton
2011-09-08patch from Uncle_Entity on IRC for fedora/colladaCampbell Barton
2011-09-06remove -Wundef for code we don't maintain & generated code.Campbell Barton
2011-08-24part of a patch from Dan Eicher for cmake packaging.Campbell Barton
2011-08-24this should finally fix collada & ubuntu building with cmakeCampbell Barton
2011-08-24attempt to fix issue with opencollada + ubuntu ppaCampbell Barton
2011-08-24opencollada find module. hopefully solves the problem where includes can in ↵Campbell Barton
an `/include` subdir or not.
2011-08-24fix [#28356] Import export STL files, problem in script in version r39307Campbell Barton
& correct some bad comments.
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