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-10-20OSX: dalai's patch for utf8 support, todo: uppercase chars not working yetJens Verwiebe
2011-10-20Fix for 7.1 audio export being misscalculated...Joerg Mueller
2011-10-20OSX fix for recent utf8 commitDalai Felinto
2011-10-20initial support for unicode keyboard input for ghost & blenders WM.Campbell Barton
- currently X11 only, depends on Xinput (but should not break other os's). - ghost stores utf8 buffer, copies to wmEvent's - UI text input is currently the only area that uses this - not console or text editor. - no rna access yet.
2011-10-17fix spelling mistakes in comments (and in some python error messages), ↵Campbell Barton
nothing to effect translations.
2011-10-14Fix for [#28916] 2.6 RC2 - Bake Sound to FCurve CrashJoerg Mueller
2011-10-14Fixing [#28907] Frozen playback.Joerg Mueller
Also fixing two more crashes when audio files don't exist/cannot be read and apply a changed file path of a sound, reported by Jens Verwiebe in IRC.
2011-10-10Sequencer audio waveform drawing fix, now assured to be within the strip bounds.Joerg Mueller
2011-10-07spaces -> tabs (only whitespace changes)Campbell Barton
2011-10-06set mikktspace functions as static which are not used externally.Campbell Barton
2011-10-06dont define the ghost PREFIX for scons, since this means our portable ↵Campbell Barton
downloadable binary would find the system blender files (if installed). this should stay disabled until scons supports system/portable installs as with cmake.
2011-10-05OSX: Correct copy/paste error and exclude endianess switch from darwinJens Verwiebe
2011-10-02Missed some stoff when removing libsamplerate.Joerg Mueller
2011-10-02Typo fix. nexYon commit caused bit-loss in the word incs.Nathan Letwory
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-01Cgange compile cindition for gcc-4.6-objC++ workaroundJens Verwiebe
2011-09-29Fix #28416: setting fluid simulation start time to anything other than zeroBrecht Van Lommel
gave wrong results. Note how in this code it already incremented to the start time and then incorrectly added it again. Patch by Chris Foster, thanks!
2011-09-28Now in proper english, heheJens Verwiebe
2011-09-28Using non ASCII-conform char in comment broke compileJens Verwiebe
2011-09-28OSX: Give clear commenting and more up-to-date defaultsJens Verwiebe
2011-09-28OSX: always compile GHOST and Quicktime with Apple-gcc-4.2, simplifies for ↵Jens Verwiebe
non-apple compilers
2011-09-28Bugfix for wrong playback reported by Sergey Sharybin in IRC.Joerg Mueller
2011-09-27OSX: introduced a workaround for compiling with non-apple gcc-4.6.1, ghost ↵Jens Verwiebe
must be compiled with apple-gcc nevertheless due objc incompatibilities
2011-09-27comment warnings as errors for MSVC - it too easily made small problems like ↵Campbell Barton
unused vars into errors which gets annoying for non developers. with GCC we have *some* warnings as errors which works out better.
2011-09-27py apiCampbell Barton
- use Py_ssize_t when dealing with python sequence sizes - dont call PySequence_Size(py_b) in a loop (its slow). - use faster sequence/float parsing in aud.Factory.filter
2011-09-26Abort on guarded memory manager errors if WITH_ASSERT_ABORT is setSergey Sharybin
2011-09-26Reverting change to solver_relax.h from commit 40539, caused this nasty bug ↵Daniel Salazar
http://projects.blender.org/tracker/?func=detail&atid=498&aid=28748&group_id=9 I'd say better be careful with code so complex as the fluid sim!
2011-09-25Fix some MSVC 2010 warnings (including one apparent bug in ↵Andrew Wiggin
intern/elbeem/intern/solver_relax.h)
2011-09-25whitespace cleanupCampbell Barton
2011-09-25give a more useful error when building with an old ffmpeg.Campbell Barton
2011-09-23Fix fluid openMP not baking with some threadcountsJens Verwiebe
2011-09-21remove support for irixCampbell Barton
2011-09-20pep8 update & some minor cmake edits.Campbell Barton
2011-09-20tag & comment unused vars with /* UNUSED */Campbell Barton
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-18fix for crash loading a file saved with fluidsim when blenders compiled with ↵Campbell Barton
it disabled. also remove unneed class prefix on function name for itasc.
2011-09-12quiet -Wundef warnings for cmake/gcc/elbeemCampbell Barton
2011-09-11Audio:Joerg Mueller
* Fix for high quality upsampling which was wrong. * Fix for doppler effects which were calculated wrong for scenes. * Improved animation evaluation at the beginning and end of a scene.
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-06replace define '#if FFTW3==1' --> '#ifdef WITH_FFTW3'Campbell Barton
2011-09-06fix some complier warnings and add -Wundef to CMake's default GCC warnings.Campbell Barton
2011-09-06TypofixNathan Letwory
2011-09-06Put dead zone printout behind debug.Nathan Letwory
2011-09-03warning fixesCampbell Barton
2011-09-03minor edits to build on openbsdCampbell Barton
2011-09-01making carbon to build again (note: NDOF is not working here)Dalai Felinto
- fix typo - isolate NDOF callsi in #ifdefs
2011-08-31typo fix: end of lines ;; --> ;Campbell Barton
2011-08-30SVN maintenance.Guillermo S. Romero
2011-08-30When creating a multisample window for Win32, the first context created, ↵Mitchell Stokes
which checks for multisample support, was never being deleted.
2011-08-30Fix for [#25062] Sound Actuator - Positional Audio.Joerg Mueller
Now all sounds that are not mono but have 3D checked automatically get reduced to mono during BGE conversion time. Also removed the now unneeded function sound_get_channels and added a missing header file to audaspace's CMakeLists.txt.