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-04-27Cycles render engine, initial commit. This is the engine itself, blender ↵Ton Roosendaal
modifications and build instructions will follow later. Cycles uses code from some great open source projects, many thanks them: * BVH building and traversal code from NVidia's "Understanding the Efficiency of Ray Traversal on GPUs": http://code.google.com/p/understanding-the-efficiency-of-ray-traversal-on-gpus/ * Open Shading Language for a large part of the shading system: http://code.google.com/p/openshadinglanguage/ * Blender for procedural textures and a few other nodes. * Approximate Catmull Clark subdivision from NVidia Mesh tools: http://code.google.com/p/nvidia-mesh-tools/ * Sobol direction vectors from: http://web.maths.unsw.edu.au/~fkuo/sobol/ * Film response functions from: http://www.cs.columbia.edu/CAVE/software/softlib/dorf.php
2011-04-23quiet some clang warnings & fix for bugs in exceptional cases.Campbell Barton
- ghost C api, BLI_get_folder_version() could assign garbage values. - pointcache ptcache_find_frames_around() had a superfluous NULL check which would have crashed anyway if actually NULL.
2011-04-21converted more mixed tab/space indentations to tabs. only whitespace changes.Campbell Barton
2011-04-21whitespace only, no functional change mixed tabs/spaces --> tabs.v2.57aCampbell Barton
2011-04-18Fix for [#26990] Loading file w packed audio crashesJoerg Mueller
FFMPEG was reallocating buffers it didn't own and wasn't allowed to. This workaround should work now flawlessly. Also fixing a bug regarding unpacking sounds, the UI stated unpacking to //audio/filename while it was unpacking to //sounds/filename
2011-04-15fix [#26937] Radio button text truncation should start at beginning of stringCampbell Barton
ensure start of text is always visible. - also left in test for fix [#26933] which left it broken. - quiet warning in AUD Py API.
2011-04-12Fix crash for Intel G45 video cardsSergey Sharybin
This video card need a bit different approach to buffer swapping. Patch provided by nico_ga from IRC.
2011-04-11FIx crash when opening User Preferences even with NVidia cardSergey Sharybin
This crash was discovered by Dalai and this happened because of unset current context (as result of call wglMakeCurrent(NULL, NULL)). In this case glGetString(GL_VENDOR) returns NULL. Rather than add check for vendor != NULL before string comparison, I've changed a bit logic of context creation: - Create context and set it as current - If it's crappy Intel card -- delete this context and share the only one context between all Windows - Otherwise, use initial logic (with sharing lists and so on) This could also fix crash when opening userprefs from a menu with Intel card.
2011-04-11Fix for [#26652] "Audio Muted" in Time Line Editor is not workingJoerg Mueller
-> The feature was completely missing o_O Also fixed an ffmpeg seeking bug.
2011-04-09doxygen fixNathan Letwory
2011-04-09whitespaceNathan Letwory
2011-04-09Fix crash for Windows+Intel video card configurationSergey Sharybin
Intel video cards don't work fine with multiple contexts and have to share the same context for all windows. This could work incorrect with multiple video cards configuration, so suppose there'll be no such situation (Intel cards are mostly in portable devices like notebooks and laptops, where there's actually no dual video cards). Anyway, it should work much better now. Non-Intel cards behavior was kept unchanged. Thanks to Ton for debug session :)
2011-04-06add option WITH_BUILTIN_GLEW, so linux packagers can disable to use their ↵Campbell Barton
own glew library.
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