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-16Fix drawing of output slots with utf-8 names. Also always show last letters ↵Sv. Lockal
in already clipped output slots names
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-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-16code cleanup: quiet warnings for gcc's -Wundef, -Wmissing-declarationsCampbell Barton
2012-09-16remove unused parts of raskter module.Campbell Barton
2012-09-15Merged this part of code by mistake.Sergey Sharybin
2012-09-15code cleanup: replace macro for BLI_rect size/center with inline functions.Campbell Barton
2012-09-15fix for bug in txt_undo_read_uint32() reading 4byte unicode values.Campbell Barton
2012-09-15Fix for collada -- some intermediate patch remained untweaked thereSergey Sharybin
2012-09-15Color Management, Stage 2: Switch color pipeline to use OpenColorIOSergey Sharybin
Replace old color pipeline which was supporting linear/sRGB color spaces only with OpenColorIO-based pipeline. This introduces two configurable color spaces: - Input color space for images and movie clips. This space is used to convert images/movies from color space in which file is saved to Blender's linear space (for float images, byte images are not internally converted, only input space is stored for such images and used later). This setting could be found in image/clip data block settings. - Display color space which defines space in which particular display is working. This settings could be found in scene's Color Management panel. When render result is being displayed on the screen, apart from converting image to display space, some additional conversions could happen. This conversions are: - View, which defines tone curve applying before display transformation. These are different ways to view the image on the same display device. For example it could be used to emulate film view on sRGB display. - Exposure affects on image exposure before tone map is applied. - Gamma is post-display gamma correction, could be used to match particular display gamma. - RGB curves are user-defined curves which are applying before display transformation, could be used for different purposes. All this settings by default are only applying on render result and does not affect on other images. If some particular image needs to be affected by this transformation, "View as Render" setting of image data block should be set to truth. Movie clips are always affected by all display transformations. This commit also introduces configurable color space in which sequencer is working. This setting could be found in scene's Color Management panel and it should be used if such stuff as grading needs to be done in color space different from sRGB (i.e. when Film view on sRGB display is use, using VD16 space as sequencer's internal space would make grading working in space which is close to the space using for display). Some technical notes: - Image buffer's float buffer is now always in linear space, even if it was created from 16bit byte images. - Space of byte buffer is stored in image buffer's rect_colorspace property. - Profile of image buffer was removed since it's not longer meaningful. - OpenGL and GLSL is supposed to always work in sRGB space. It is possible to support other spaces, but it's quite large project which isn't so much important. - Legacy Color Management option disabled is emulated by using None display. It could have some regressions, but there's no clear way to avoid them. - If OpenColorIO is disabled on build time, it should make blender behaving in the same way as previous release with color management enabled. More details could be found at this page (more details would be added soon): http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.64/Color_Management -- Thanks to Xavier Thomas, Lukas Toene for initial work on OpenColorIO integration and to Brecht van Lommel for some further development and code/ usecase review!
2012-09-15Fix compilers warnings when legacy compositor is disabledSergey Sharybin
2012-09-15code cleanup: remove more invalid/paranoid NULL checks Campbell Barton
2012-09-15code cleanup: remove paranoid/invalid NULL checks and also reduce some ↵Campbell Barton
unneeded size_t -> int conversions.
2012-09-15fix for error in own recent commit adding node undo pushes. (bad use of sizeof)Campbell Barton
2012-09-15fix for 3 obvious mistakes/bugs.Campbell Barton
2012-09-15code cleanup: remove paranoid NULL checks (these cases would crash earlier ↵Campbell Barton
of the vars were in fact NULL)
2012-09-15fix incorrect macro for mask handle selection checking.Campbell Barton
2012-09-15code cleanup: replace memcpy for copy_v3_v3(), and fix for unlikely crash - ↵Campbell Barton
if (ob->mat == NULL && ob->totcol)
2012-09-15Silent compiler's warnings about tracking moduleSergey Sharybin
2012-09-15code cleanup: quiet some windows warnings.Campbell Barton
2012-09-15code cleanup: modify DO_INLINE define to not use __inline with mingwCampbell Barton
make RegisterBlendExtension_Fail a static func u
2012-09-15quiet -Wmissing-prototypes warnings, and enable this warning by default for ↵Campbell Barton
C with gcc. helps for finding unused functions and making functions static, also did some minor code cleanup.
2012-09-15fix [#32381] Sculpt: crash when using radius sensitivityCampbell Barton
2012-09-15Collada: #32549 partial fix: packed images now export correctlyGaia Clary
2012-09-14Correction to rev50582: LABEL could have a1 = 1.0f and in this case a2 would ↵Sergey Sharybin
be used as alpha multiplier for icon
2012-09-14Movie cache: made it thread safe to operate with memory limitorSergey Sharybin
Movie cache is using global memory limitor, which isn't thread safe in some of operations, so it required to add mutex around limitor operations in movie cache. It's probably could be solved in a way with less locks involved by using different limitor for different areas (like use own limitor for clips, own limitor for sequencer and so), but that wouldn't be so easy to control overall memory usage. -- svn merge -r50125:50126 ^/branches/soc-2011-tomato
2012-09-14Sequencer: clear cache and animation buffers for strips outside of cursor ↵Sergey Sharybin
when rendering This avoids having bunch of cached images when doing animation rendering, keeping all the memory available for rendered itself. This keeps memory usage low when rendering huge edits with mixed scenes and movie strips. This should not affect on sped of video encoding, which was confirmed by some own tests. -- svn merge -r50051:50052 ^/branches/soc-2011-tomato
2012-09-14Code cleanup: removed unused Cocoa image load/save code.Brecht Van Lommel
2012-09-14fix for sharp edge selection being inverted, change default angle from 1 to ↵Campbell Barton
30deg.