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
2013-12-22Style Cleanup: remove preprocessor indentation (updated wiki style guide too)Campbell Barton
2013-09-09fix [#36685] crash calculating tangent space data on degenerate geometryCampbell Barton
the error was that the range check was done on the float before converting to an int. now convert to and int first and ensure a valid range on that.
2013-08-07code cleanup: some structs were declaring data when only typedef's were ↵Campbell Barton
intended, make local vars and functions static.
2012-12-17Added GPL header to sconscripts!Bastien Montagne
Also changed shebang to '#!/usr/bin/env python', this is more portable across unixes...
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-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-06-07style cleanupCampbell Barton
2012-06-05style cleanupCampbell Barton
2012-04-28style cleanup: changes to brace placement / newlines - for/while/if/switchCampbell Barton
2011-12-23Code cleanup: fix some clang static checker warnings.Brecht Van Lommel
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-06set mikktspace functions as static which are not used externally.Campbell Barton
2011-07-16print an error message if Python.h can't be found for cmake and scons since ↵Campbell Barton
its such a common problem.
2011-05-31cmake maintenanceCampbell Barton
blender_add_lib now takes a separate include argument to suppress warnings in system includes (mostly ffmpeg & python). also only build wm_apple.c on apple+carbon configuration.
2011-03-29use 'is None' rather then '== None' as suggested by python docs & mis-spelling.Campbell Barton
2011-03-28misc nodes & editors: floats were being implicitly promoted to doubles, ↵Campbell Barton
adjust to use floats. + minor update to demo_mode
2011-03-19remove some redundant vars, assignments & checks.Campbell Barton
2011-03-08Apply a small patch from mikktspace author Morten Mikkelsen (cosmetic changes).Nathan Letwory
2011-02-25doxygen: intern/mikktspace tagged.Nathan Letwory
2011-02-21add includes to cmake filesCampbell Barton
2011-02-18malloc() comes from stdlib.h per K&R ANSI C, C89 & C99.Guillermo S. Romero
If some plataform really needs malloc.h, that is the exception to get #ifdef.
2011-02-17apply fix [#26117] Recent changes to "mikktspace.c" broke building on ↵Campbell Barton
FreeBSD. Patch attached. also check for NetBSD. note: we probably should use define HAVE_MALLOC_H, seems common for other projects.
2011-02-16The modifications in mkktspace broke compilation on gcc 4.2.xM.G. Kishalmi
This is a patch proposed by sparky_ on irc.
2011-02-16fix from mikes for building on apple with gcc 4.2.1Campbell Barton
2011-02-15Fix from sparky for compile problem with older GCCNathan Letwory
2011-02-15Move mikktspace code to own library, so it is clear that it is alsoNathan Letwory
intended as a standalone library for use in other applications that want the same tangent space as Blender. This also keeps blenkernel clean(er) from extra math functions.