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
2012-09-17Fix compilation for non GCC compilersSergej Reich
Was simple copy pase error.
2012-09-17Fix compilation issue, also get rid of annoying "_MSC_VER not defined"Antony Riakiotakis
preprocessor ambiguity for MinGW
2012-09-17Remove obsolete code from BKE_tracking_marker_clampSergey Sharybin
2012-09-17Fixed crash in cases sequencer returns NULL image bufferSergey Sharybin
Happens when there's no strip under current frame. Simply added NULL-check.
2012-09-17fix [#32442] UNDO causes actual shape key to be lost, undoing a modification ↵Campbell Barton
of another shape key.
2012-09-17add endian switching to mask shape key loading (loading mask animations ↵Campbell Barton
between big/little endian systems would break), also set attributes to BLI_endian_switch_* functions.
2012-09-17code cleanup: fsmenu.c names were confusing - fsms / fsme / prev --> ↵Campbell Barton
fsm_head / fsm_iter / fsm_prev
2012-09-17code cleanup: correct include paths and commentCampbell Barton
2012-09-17fix [#32564] Entries in recent list (file select dialog) don't get pushed to ↵Campbell Barton
top if used again
2012-09-17code cleanup: replace fsmenu_insert_entry args with flags.Campbell Barton
2012-09-17style cleanupCampbell Barton
2012-09-17code cleanup: text clipping function ui_text_leftclip() was also used for ↵Campbell Barton
cursor clipping which made it a bit confusing, split into 2 functions. ui_text_clip_left(), ui_text_clip_cursor().
2012-09-17code cleanup: add some comments and made some small speedup to text clipping ↵Campbell Barton
in the UI
2012-09-17style cleanup: multiple statements on a single line in interface code.Campbell Barton
2012-09-17fix for node socket text buttons not scaling with DPI, also quiet -Wundef ↵Campbell Barton
warning WITH_DDS.
2012-09-17* Enable opencolorio for scons/mingw32 (coming very soon)Antony Riakiotakis
* Change names of libraries for mingw32 boost to 1.49
2012-09-16Fix drawing of output slots with utf-8 names. Also always show last letters ↵Sv. Lockal
in already clipped output slots names
2012-09-16Enable OpenColorIO for MinGW64 build targetsAntony Riakiotakis
2012-09-16Few cleanup in matrix mathutils (make mul_m3_m3m4 and mul_m4_m3m4 consistant ↵Bastien Montagne
with other similar funcs, mainly copy-safe [i.e. you can use the same matrix as operand and result, saves lines in some already over-complicated code!]).
2012-09-16Color Management: fix crash when displaying render preview if OCIO was ↵Sergey Sharybin
disabled buildtime
2012-09-16Real fix for OSX CMake -- was a typo in build file generation fileSergey Sharybin
Now Ceres re-bundling should go smooth :)
2012-09-16Fix OSX compileJens Verwiebe
2012-09-16Fix typo in one of previous commitsSergey Sharybin
2012-09-16OSL Fix for fireflies in velvet bsdf, ported over from SVM fix in r41738.Lukas Toenne
2012-09-16Fix some warnings treated as errors here.Sergey Sharybin
2012-09-16Ceres: tweak namespace for hash classes for MSVC2010Sergey Sharybin
Not sure if it'll solve all issues, but at least it should reduce amount of errors. Also added missed patch from previous commit.
2012-09-16Ceres: reshuffle include order to solve compilation error with MSVCSergey Sharybin
Not sure why exactly this happens, would need extra investigation and should probably be also fixed in upstream.
2012-09-16Libmv: remove unwind hack from CMake rules.Sergey Sharybin
Such stuff better be solved in glog itself. Should be pretty safe change since it was defined for CMake only and AFAIR Jens wanted to get rid of this too.
2012-09-16Ceres: upgrade to version 1.3.0Sergey Sharybin
This should contain real fixes for Windows, making it more robost and hopefully faster (due to proper collection port) on that platform. Also hack to fix Eigen alignment shouldn't be needed anymore. Also on platforms which have got broken TR1 collections it's better to define CERES_NO_TR1 instead of using Boost hacks. Made changes to Scons and CMake, but can not check if this indeed works since i don't have OSX here.
2012-09-16Ceres: remove debug-only code from bundling script, also move osx workaround ↵Sergey Sharybin
to template
2012-09-16Code cleanup - Remove/update outdated comments and whitespace tweaksJoshua Leung
2012-09-16use the format attribute in more places, disable X11 options when building ↵Campbell Barton
with GHOST_SDL
2012-09-16speedup for vertex parent lookups, were looping over array elements when it ↵Campbell Barton
wasn't needed for lattice and curves, and in some cases meshes. do dirrect array lookups instead where possible.
2012-09-16Bugfix [#32501] Protected layer bones transform buttons are greyed out/inactiveJoshua Leung
Since the transform values for bones in protected layers can be animated again using many of the common tools, it makes sense that the transform properties for these are allowed to be edited too. I've left the rotation mode setting as a "proxy locked" value for now, since this seems more like something that's defined as part of the rig creation (and best left alone by animators).
2012-09-16Code cleanup - remove some obsolete codeJoshua Leung
2012-09-16style cleanupCampbell Barton
2012-09-16fix for error in recent commit (made function static that shouldn't have ↵Campbell Barton
been), add extra gcc warnings to cmake.
2012-09-16code cleanup: quiet warnings for gcc's -Wundef, -Wmissing-declarationsCampbell Barton
2012-09-16code cleanup: make local game engine functions staticCampbell Barton
2012-09-16code cleanup: remove unused structs and also some style cleanup.Campbell Barton
2012-09-16remove unused parts of raskter module.Campbell Barton
2012-09-15Yet another OSL fix: Some functions are missing stubs that were not used in ↵Lukas Toenne
old OSL implementation yet.
2012-09-15Fix for OSL 'Normal' node: the Direction parameter is of 'normal' type ↵Lukas Toenne
instead of generic 'vector'.
2012-09-15Generate compatible OSL shader parameter names in cases where the node has ↵Lukas Toenne
and input and output with the same name. In that case the convention is to add suffixes "In" and "Out" respectively. Example: Blender node has one input "Color" and one output "Color" -> OSL parameter names should be "ColorIn" and "ColorOut"
2012-09-15OSL implementation of RGB ramp node.Lukas Toenne
The sampled color ramp data is passed to OSL as a color array. This has to be done as actual float[3] array though, since the Cycles float3 type actually contains 4 floats, leading to shifting color components in the array. Additional parameter set functions for arrays have been added to the Cycles OSL interface for this purpose.
2012-09-15Merged this part of code by mistake.Sergey Sharybin
2012-09-15Cycles / OSL:Thomas Dinges
* Fix Musgrave Texture, used wrong Perlin Noise (0..1) instead of -1..1. Also added comment to noise_basis() to make it clear which noise type is used there.
2012-09-15Cycles / OSL:Thomas Dinges
* Fixes for Voronoi, Gradient and Magic Textures. SVM and OSL renders excactly the same now.
2012-09-15* Disable building of Legacy Compositor in Scons. Thomas Dinges
2012-09-15code cleanup: replace macro for BLI_rect size/center with inline functions.Campbell Barton