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-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.
2011-02-19Relicensing audaspace under GPL 2 or later.Joerg Mueller
2011-02-19Adding support for the "media" play/pause/stop/next/prev buttonsJoshua Leung
available on many keyboards these days, so that they can be used for animation playback (giving more options over alt-a and alt-a ad- infinitum). Currently, this is Windows only as I don't have a Linux/Mac system to test on (it should compile with both mingw and msvc, at least using scons). Maintainers for those systems can probably easily add this in once they find out the relevant mappings for those systems.
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-17Start simple intros for intern and extern libs.Nathan Letwory
Some reorg of modules/pages, start makesdna and makesrna. In many places license block needs to be changed to not start with /**, because otherwise documentation will go weird.
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-17Starting work on doxygen cleanup. Many things still to be done.Nathan Letwory
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.
2011-02-12fix for more warnings.Campbell Barton
- modifier code was using sizeof() without knowing the sizeof the array when clearing the modifier type array. - use BLI_snprintf rather then sprintf where the size of the string is known. - particle drawing code kept a reference to stack float values (not a problem at the moment but would crash if accessed later).
2011-02-12fix for uninitialized value in BLI_path_cwd() if PWD wasn't defined and the ↵Campbell Barton
CWD was longer then 160.
2011-02-12quiet some clang warnings.Campbell Barton
2011-02-08minor edits, no functional changes.Campbell Barton
- BGE was getting MCol array and not using it. - use list lookup functions for getting constraint from pose bone. - use const char * in more places.
2011-02-04Fix [#19997] Duplicating window results in graphics corruption in UINathan Letwory
reported by Micael Dias (and many others, see duplicates list) On closing the first ("main") Blender window the very first OpenGL context got deleted too. This context needs to be retained, since we share quite a bit of OpenGL data through it to the newly created contexts (new windows). Thanks to Ton Roosendaal for thinking out loud while trying to figure out what the actual cause was.
2011-02-03Audio Bugfixes:Joerg Mueller
* [#25638] 'Insufficient thread locking' for sounds - Actually a workaround for an msvc bug, msvc STL containers are buggy * [#25922] Sound does not play in BlenderPlayer(r34579) - Windows OpenAL doesn't seem to have clear context error state on initialising
2011-01-30remove nan-makefilesCampbell Barton
2011-01-28Make version check more future proof.Nathan Letwory
2011-01-27fix for gcc 4.6 commit: this is needed for osx too.Campbell Barton
2011-01-27[#25815] Patch gcc 4.6Campbell Barton
with minor edits, made sure it works in CMake too.
2011-01-27Silencing some annoying key-event prints in Win32 console:Joshua Leung
The console was getting flooded with output like g i i ... all as a result of what looks like a debugging print. Whoever put this in, you can get back your debugging prints by enabling BF_GHOST_DEBUG in your local config :)
2011-01-26Apply part of patch [#25612] Windows 7 icon progress barNathan Letwory
Submitted by Alexander Kuznetsov. This adds the progress bar to the taskbar item of Blender for Windows 7. Small change in version retrieval, otherwise as is.
2011-01-26Apply multimonitor fix part of patch [#25612]Nathan Letwory
Submitted by Alexander Kuznetsov Fixes [#23630] Negative OS screen coords not stored/used Reported by Mort (mnme)
2011-01-25use cmake defined names for jpeg, png, zlib and python libs, building on ↵Campbell Barton
*nix with non-standard libjpeg/png/zlib locations was broken. in the case of python this makes it easier to move to find_package(PythonLibs) when 3.x is supported.
2011-01-25cmake maintenance, was missing 2 headers and made some minor improvements to ↵Campbell Barton
cmake_consistency_check.py. also converted GHOST_SystemWin32.cpp to utf8.
2011-01-24Fix [#25715] [!] key doesn't work on french keyboard with Windows ↵Nathan Letwory
XP/7.\nSubmitted by Eric Le Pape\n\nThe key sent VK_OEM_8, which wasn't handled at all. Added code to detect primary language and handle VK_OEM_8 specifically for certain layouts.