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
2015-07-13 Imbuf types refactor.Antony Riakiotakis
ImBuf types were getting stored as bitflags in a 32bit integer which had already run out of space. Solved the problem by separating file type to an ftype enum, and file specific options to foptions. Reviewed by Campbell, thanks a lot!
2015-07-13Fix T45397: Frameserver rendering no longer works in 2.75 or 2.75aSergey Sharybin
Issue was caused by a typo in original multiview commit.
2015-07-13Fix T45385: Crash on render occurring when two hair modifiers are active ↵Sergey Sharybin
that both use a UV mapped material for render Not sure it's totally correct solution, but seems reasonable because it's possible dmcache is set to ISCHILD. Someone more familiar with the particles code might want to revisit this :)
2015-07-12Minor tweaking to Knife header text.Bastien Montagne
Confirm/cancel shall always be first, and also makes more sense to have define cut/close cut/new cut together.
2015-07-12Shortcut-to-string converter: add 'dbl-' in front of key when expecting a ↵Bastien Montagne
double-click. I think this is the only Keymap value we really need to handle here...
2015-07-12Add new modalkeymap usage in helper header message to Knife tool.Bastien Montagne
2015-07-12Add new modalkeymap usage in helper header message to Fly mode.Bastien Montagne
2015-07-12Cleanup: styleCampbell Barton
2015-07-12Remove redundant string copyCampbell Barton
2015-07-12Missed essential part in previous commit.Bastien Montagne
Or how to epic fail a fix when working on two different systems. Or how to increase your commit rate.
2015-07-12Fix T45375: Cant clear temp fluid cache after closing Blender (Windows).Bastien Montagne
There was two different issues here actually: * Own (very high) stupidity only gave 8 chars to file name (sic). * list dir returns dirpaths without a trailing slahs, but expects them to have it it seems. :|
2015-07-12Fix crash in redraw timerCampbell Barton
Was modifying wrong regions flag, that could also be NULL.
2015-07-12Add ability for redraw timer to run for fixed timeCampbell Barton
Also avoid accessing context vars in timer loop.
2015-07-12PyAPI: Use separate writes for operator reportsCampbell Barton
This allows us to temp override the stdout and extract individual reports
2015-07-11Use const for direntry stringsCampbell Barton
2015-07-11File Browser: Fix possible bug and some minor tweaksJulian Eisel
BLI_add_slash appended to a char *, a potential buffer overflow Also partially removed an assert, which failed after changing file format of a saved image. We need a better way to handle such cases.
2015-07-11Error in last commitCampbell Barton
2015-07-11Minor changes for more efficient endian switchingCampbell Barton
2015-07-11Use const for sculpt varsCampbell Barton
resolves building with gcc4.9
2015-07-11ImBuf: Fix compilation error with older libpngSergey Sharybin
Older libpng library does not use const pointer to a memory. The exact version is a bit of a guess here, maybe needs tweaks to it tho.
2015-07-11remove redundant castsCampbell Barton
2015-07-11error in own last commitCampbell Barton
2015-07-11Avoid static var for OpenEXRCampbell Barton
2015-07-11Make Iris image loading thread-safeCampbell Barton
Needed for thumbnails
2015-07-11ImBuf: cleanup, use const for memory passed inCampbell Barton
2015-07-11Add WM_framebuffer_to_index_arrayCampbell Barton
Convert buffer to index in one loop, also minor cleanup to backbuf/selection functions. - Use IMB_rectcpy instead of inline pixel copy. - Redundant WM_framebuffer_to_index call.
2015-07-11File Browser: Keep file name after changing directoryJulian Eisel
Actually this was an intentional change in rBaeeb23efa28dc to prevent Blender from trying to open the old file from the new directory. Issue is that this is really bad for saving and basically breaks "Save As". Some more tweaks were needed to make it work like before, so now it keeps the name of the last selected file, but clears it when selecting a folder.
2015-07-11BLI_matrix space_transform: Add a 'local-invariant' setter.Bastien Montagne
`BLI_space_transform_from_matrices()` defines a 'global-invariant' transform (same point in global space, two different coordinates in local and target spaces). New `BLI_space_transform_global_from_matrices()` is kind of opposite, it defines a 'local-invariant' transform (two different points in global space, same coordinates in local and target spaces). Useful to 'match' meshes.
2015-07-10Fix T45405: Crash on opening a file (in filebrowser code)Julian Eisel
Quoting Bastien from IRC: "Filebrowser is a nest of bad surprises" -- indeed :S
2015-07-10Cleanup: use const for mesh functionsCampbell Barton
2015-07-10Cleanup: use const for gpu bufferCampbell Barton
2015-07-10Cleanup: remove redundant includesCampbell Barton
2015-07-10Sequencer: changes to text effect stripCampbell Barton
- default alignment to lower center. - placement is now relative, so changing output size keeps correct placement. - instead of center override, add align option (left/right/center). Also don't use pixel-size for setting the font size, on new strips. Better not have UI prefs impact low level API's.
2015-07-10Fix crash when appending from File BrowserJulian Eisel
Again own mistake in rBaeeb23efa28dc1
2015-07-10Code cleanup: White space and dead code.Tamito Kajiyama
2015-07-10Freestyle: new stroke modifiersFolkert de Vries
This patch introduces a couple new stroke modifiers. The ones currently implemented are based on prototypes by @kjym3 and myself. The new modifiers: - Tangent - Thickness noise - Crease Angle - Simplification - Curvature 3D The documentation for these new modifier types can be found [[ http://www.blender.org/manual/render/freestyle/parameter_editor/index.html | in the manual ]]: {F134441} (left: AnisotropicThicknessShader, right: NoiseThicknessShader) {F140499} (left: Curvature 3D, right: Simplification) Author: Folkert de Vries (flokkievids) Reviewers: kjym3 Subscribers: #user_interface, plasmasolutions, kjym3 Projects: #bf_blender Differential Revision: https://developer.blender.org/D963
2015-07-10BLI_math 'compare' cleanup & enhancements.Bastien Montagne
This commit: * Adds a 'compare_ff' function for absolute 'almost equal' comparison of floats. * Makes 'compare_vxvx' functions use that new 'compare_ff' one. * Adds a 'compare_ff_relative' function for secured ulp-based relative comparison of floats. * Adds matching 'compare_vxvx_relative' functions. * Adds some basic tests for compare_ff_relative. See https://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/ Note that we could replace our python/mathutils' EXPP_FloatsAreEqual() by BLI's compare_ff_relative (using a very small absolute max_diff), but these do not have exact same behavior... Left a comment there for now, we can do it later if/when we are sure it won't break anything!
2015-07-10REmove stupid apple check on OMP in weightvg modifier.Bastien Montagne
This is handled in build files...
2015-07-10CustomData: deprecate CD_ID_MCOLCampbell Barton
2015-07-10makesrna: use int64 for rounding checkCampbell Barton
Harmless but larger values would overflow
2015-07-10DNA: replace GCC poison with ifdef for enumsCampbell Barton
2015-07-10Fix T45398: Saving file from File Browser doesn't work if no file is selectedJulian Eisel
Own mistake in rBaeeb23efa28dc16e20
2015-07-09File Browser: (Re-)Allow selecting '..' parent entry for file navigationJulian Eisel
Selecting '..' entry was intentionally disabled in rB76b4fad6dbda1b10c, however, for file navigation this can be really useful. So this basically allows selecting '..' entry again, *if it is the only entry to select*. It won't be selected using box select, select all or when expanding selection.
2015-07-09File Browser: Improve usage of Enter-key to open files/directoriesJulian Eisel
From a user-POV this makes following changes: * Adds support for using the Enter-key to open directories * Updates the upper text-buttons for file and directory on selection * Last selected file/directory is opened now (in sync with upper text-buttons) * Changes text in open button to "Open Directory" if a directory is selected D1349, Reviewed by @mont29
2015-07-09Cleanup: warningsCampbell Barton
2015-07-09Cleanup: quiet warningCampbell Barton
2015-07-09Select Shortest Path for edit-curveCampbell Barton
D1391 by @pink.vertex with own fixes/edits
2015-07-09Curve: change rules wrt active bezierCampbell Barton
Activate the vertex even if only a single handle is selected
2015-07-09Curve selection, de-duplicate & cleanupCampbell Barton
2015-07-08Select Similar for edit-curveCampbell Barton
D1381 by @johnroper100 with edits