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/source
AgeCommit message (Collapse)Author
2019-04-23UI: ignore events in empty region overlap areasCampbell Barton
- Resizable areas use 2D view bounds. - Header uses the button bounds. - A margin is added to avoid clicking between buttons. - Region resize edges clamp to the 2D view bounds. Resovles T61554
2019-04-23UI: add ui_window_to_block_rctf, ui_window_to_region_rctiCampbell Barton
2019-04-23UI: move auto_open clearing out of ui_region_contains_point_pxCampbell Barton
Prefer explicit call for menu buttons since it's confusing if only some queries clear auto open. Also queries shouldn't modify data.
2019-04-23Cleanup: style, use braces for compositorCampbell Barton
2019-04-23Cleanup: style, use braces for imbufCampbell Barton
2019-04-23Fix T63772: Movie clip toggle toolbar failsCampbell Barton
D4718 by @Gvgeo
2019-04-23App Template: match screen names to workspacesCampbell Barton
Doing this makes versioning workspace screens simpler. This was already done for the default startup file.
2019-04-23Correct braces with ifdef'sCampbell Barton
2019-04-22Rename: Separate: By loose parts > By Loose PartsDalai Felinto
2019-04-22Cleanup: style, use bracesCampbell Barton
Add braces for modules already using braces almost everywhere.
2019-04-22Cleanup: style, use braces for nodesCampbell Barton
2019-04-22Cleanup: style, use braces for blenkernelCampbell Barton
2019-04-22Cleanup: style, use braces for gpuCampbell Barton
2019-04-22Cleanup: style, use braces for editorsCampbell Barton
2019-04-22Cleanup: style, use braces for gpencil modifiersCampbell Barton
2019-04-22Cleanup: style, use braces for makesdna, makesrnaCampbell Barton
2019-04-22Cleanup: style, use braces for modifiersCampbell Barton
2019-04-22Cleanup: style, use braces for blenloaderCampbell Barton
2019-04-22Cleanup: style, use braces for aviCampbell Barton
2019-04-22Cleanup: style, use braces for blenfontCampbell Barton
2019-04-22Cleanup: style, use braces for renderCampbell Barton
2019-04-21Cleanup: comments (long lines) in renderCampbell Barton
2019-04-21Cleanup: comments (long lines) in avi, blf & bltCampbell Barton
2019-04-21Cleanup: comments (long lines) in gpuCampbell Barton
2019-04-21Cleanup: comments (long lines) in makesrnaCampbell Barton
2019-04-21Cleanup: comments (long lines) in makesdnaCampbell Barton
2019-04-21Cleanup: comments (long lines) in imbufCampbell Barton
2019-04-21Cleanup: comments (long lines) in blenloaderCampbell Barton
2019-04-21Cleanup: comments (long lines) in blenlibCampbell Barton
2019-04-21Cleanup: comments (long lines) in editorsCampbell Barton
2019-04-21Fix error renaming Lamp to LightCampbell Barton
Introduced in batch rename 3051e2f4ae8fd3e72a4.
2019-04-21Fix T63698: Eevee crash after recent clang-format changesBrecht Van Lommel
Some GLSL compilers seem to not have problems with \ to break preprocessor directives. I couldn't find other places with similar code, but fixing this case by case is not ideal and the same issue may come up again.
2019-04-21Cleanup: comments (mainly long lines)Campbell Barton
Comments after code can cause awkward line breaks.
2019-04-21Fix T63431: crash adding driver to a keyframed property with Ctrl+DBrecht Van Lommel
2019-04-21Fix T63681: bad clipping of very long tooltipsBrecht Van Lommel
2019-04-21Fix T63686: missing data path for 3D cursor location and rotation.Brecht Van Lommel
2019-04-20Cleanup: add missing macros to clang-formatCampbell Barton
2019-04-20Fix invalid stack memory use with GPencil drawingCampbell Barton
2019-04-20Fix error in recent image preference changeCampbell Barton
2019-04-20NLA: check that properties are animatable.Alexander Gavrilov
2019-04-20GPU: automatically draw images with GLSL shader depending on resolutionBrecht Van Lommel
This adds a new "Automatic" image display method which uses GLSL shaders for most images. It only does CPU side color management for higher res images where sending big float buffers to the GPU is likely to be a bottleneck or cause memory usage problem. Automatic is the default now, previously it was 2D Texture.
2019-04-20Cleanup: remove unused OpenGL functions, rename some for clarityBrecht Van Lommel
2019-04-20Cleanup: re-use test for ELEM & STR_ELEMCampbell Barton
Avoid having same test running at the end of each macro.
2019-04-20Cleanup: quiet warning for NULL pointer useCampbell Barton
Warning was false positive but avoid repeating the same check.
2019-04-203D View: add opacity for sculpt mask displayPablo Dobarro
This matches vertex/texture paint opacity options. Useful because 0.75 is sometimes too dark to see the surface shading. Resolves T63746
2019-04-20Cleanup: de-duplicate flag setting macroCampbell Barton
2019-04-20Cleanup: quiet extra-semicolon warningCampbell Barton
2019-04-20Fix T63732: GPencil Onion now working with multiwindowsAntonioya
If you had several windows or, after last changes in topbar, several areas, the swith of overlays or Onion Skin was not working by area, but as whole switch, so it was impossible to have different status by window.
2019-04-20Cleanup: comment line length (tests)Campbell Barton
2019-04-20Cleanup: comment line length (windowmanager)Campbell Barton