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
path: root/intern
AgeCommit message (Collapse)Author
2011-03-30includes for building with gcc 4.6 on fedora.Campbell Barton
patch from Richard Shaw
2011-03-29remove DEBUG flag from OpenNL with cmake, was giving too many prints in the ↵Campbell Barton
console when unwrapping.
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-27clear some c++ warnings.Campbell Barton
2011-03-26fix for blenderplayer crashing on exit.Campbell Barton
the event consumer was being freed twice, once when going out of C++ scope, another when freeing the system.
2011-03-25dont return a system path if cmake's 'WITH_INSTALL_PORTABLE' is enabled. ↵Campbell Barton
this way portable builds wont find scripts in /usr/share.
2011-03-25add cmake option to build without xinput (tablet support)Campbell Barton
2011-03-19remove some redundant vars, assignments & checks.Campbell Barton
2011-03-19Fix [#25480] Unable to use Windows titlebar icons after LoopcutNathan Letwory
reported by Georg K with patch [#26469] Windows mouse fix by Alexander Kuznetsov The amount of mouse grabs wasn't properly balanced with ungrabs, thus preventing from using proper mouse input outside client area.
2011-03-18Fix for crasher on Win XP, submitted by Kanttori.Nathan Letwory
size is 32 on XP, while sizeof(ri) gives 40. Pick the smaller one to pass to memcpy to prevent crashes.
2011-03-12Some explicit casts to silence warnings (unsafe to mix int and bool in ↵Nathan Letwory
comparisons).
2011-03-11Fix a typo in defines. Patch by Alexander KuznetsovNathan Letwory
The typo resulted in bad keyboard input handling in MinGW builds.
2011-03-10Fix [#26446] Quick extrude (Ctrl+LMB) works only one timeNathan Letwory
Reported by Michael R This was one thing I didn't test when accepting patch [#26364]. It is important to not send repeats of modifier keys.
2011-03-10Apply [#26364] New Windows keyboard handlingNathan Letwory
Submitted by Alexander Kuznetsov Fixes [#25279] Shift-Numpad Combinations fail to align view to selected and addresses [#26328] Blender uses global keyboard message hook which hurts system responsiveness on Windows A whole new way of handling keyboard input improves greatly both code readability and event handling. Thanks for the great patch, Alexander!
2011-03-09image.depth, 96/128 for float color images, was 24/32 for byte images.Campbell Barton
also use <> for system includes
2011-03-08Apply a small patch from mikktspace author Morten Mikkelsen (cosmetic changes).Nathan Letwory
2011-03-03replace 0 with NULL when used as a pointerCampbell Barton
2011-03-01Fix [#25476] Pan view not always works with shift+alt+LMB in Blender 2.56Nathan Letwory
Reported by Mihail Konoh Applied patch submitted by Alexander Kuznetsov (to [#26208]). Thanks for long-standing head-ache :)
2011-02-26use const char for return values of getenv().Campbell Barton
2011-02-25SVN maintenance.Guillermo S. Romero
2011-02-25doxygen: intern/string tagged.Nathan Letwory
2011-02-25doxygen: intern/smoke tagged.Nathan Letwory
2011-02-25doxygen: intern/moto tagged.Nathan Letwory
2011-02-25doxygen: intern/mikktspace tagged.Nathan Letwory
2011-02-25doxygen: intern/memutil taggedNathan Letwory
2011-02-25doxygen: intern/itasc taggedNathan Letwory
2011-02-25doxygen: intern/iksolver tagged. Leaving out TNT, since we have it in ↵Nathan Letwory
multiple locations.
2011-02-25doxygen: intern/guardedalloc taggedNathan Letwory
2011-02-25doxygen: fixup and tag intern/ghost.Nathan Letwory
2011-02-25doxygen: intern/elbeem taggedNathan Letwory
2011-02-25doxygen: intern/decimation taggedNathan Letwory
2011-02-25doxygen: intern/container taggedNathan Letwory
2011-02-25doxygen: intern/bsp taggedNathan Letwory
2011-02-25doxygen: intern/boolop taggedNathan Letwory
2011-02-25doxygen: opennl tagged.Nathan Letwory
renamed BLO_sys_types.h to superlu_sys_types.h
2011-02-25doxgyen: audaspace tagged.Nathan Letwory
2011-02-23doxygen: prevent GPL license block from being parsed as doxygen comment.Nathan Letwory
2011-02-23doxygen: make sure license blocks don't interfere.Nathan Letwory
2011-02-23"I must be an idiot"Nathan Letwory
2011-02-23doxygen fix, otherwise file doesn't show up in module section.Nathan Letwory
2011-02-23doxygen: add Audaspace C API entryNathan Letwory
2011-02-22doxygen: add bullet to extern libs, some small changes in page names, and ↵Nathan Letwory
fixes around license blocks
2011-02-21Finally got around to fixing priorities, so cleanup in stubs.c can be done. ↵Nathan Letwory
blenderplayer builds again with cmake.
2011-02-21add includes to cmake filesCampbell Barton
2011-02-21doxygen: some code shuffle to prevent clashing file names, ensure ↵Nathan Letwory
MEM_guardedalloc.h also shows in docs
2011-02-21doxygen: add guardedalloc and AVINathan Letwory
2011-02-20Add XF86keysym.h detection and use to CMake system, for r34983.Guillermo S. Romero
2011-02-19Add media keys for XFree86/Xorg based X11.Guillermo S. Romero
TODO: setup build systems to define WITH_XF86KEYSYM.
2011-02-19Audaspace:Joerg Mueller
* Adding play method to the device classes to play back a reader (not used yet, preparation for a later feature). * Using a linear resampler in case SRC is disabled.