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
2018-07-09GPUTexture: Fix GPU_texture_read for depth stencil formatClément Foucault
2018-07-09Eevee: LightCache: Use render visibility to select the probeClément Foucault
If a probe is not visible during render, it will not be selected to be baked into the lightcache.
2018-07-09Eevee: LightCache: Fix cache validation.Clément Foucault
2018-07-09Eevee: LightCache: Fix wrong mipmap sizeClément Foucault
2018-07-09Eevee: LightCache: Fix problem caused by probe sortingClément Foucault
2018-07-09Eevee: LightCache: Add Light Cache infos in the UIClément Foucault
This is still a bit basic but will be enhance in the future.
2018-07-09Eevee: LightCache: Small fixes and cleanupsClément Foucault
2018-07-09Eevee: LightCache: Add free operator.Clément Foucault
2018-07-09GPUTexture: Fix mipmap size calculation.Clément Foucault
2018-07-09Eevee: LightCache: Add cubemap only baking button.Clément Foucault
2018-07-08Eevee: LightCache: Add Autobake propertyClément Foucault
This also add partial probe update per type (only update cubemap if needed) but it seems to be broken by some double update tagging in the depsgraph.
2018-07-07Eevee: LightCache: Add auto update when lightprobe are being modifiedClément Foucault
One draw back is that there is a significant overhead caused by creating the batches for the new depsgraph. Caching the depsgraph between subsequent update is not possible right now because we cannot update it. This is to be adressed in the future. There is no option to disable auto update right now.
2018-07-06DEG: Fix drawdata type usageClément Foucault
2018-07-06Merge remote-tracking branch 'origin/blender2.8' into temp-eeveelightcacheClément Foucault
2018-07-06Depsgraph: Relations builder should not tag ID in all depsgraphsSergey Sharybin
2018-07-06Keymap: outliner now uses A/Alt-A for selectionCampbell Barton
2018-07-06Merge branch 'master' into blender2.8Campbell Barton
2018-07-06Cleanup: use outliner_flag_* name prefixCampbell Barton
2018-07-06UI: small layout fixes for RMB context menus.Brecht Van Lommel
2018-07-06UI: disable broken horizontal properties editor alignment.Brecht Van Lommel
2018-07-06UI: draw search popups with menu background, instead of box.Brecht Van Lommel
Otherwise these are not visible well with the new dark theme.
2018-07-06Fix crash with properties editor pinning.Brecht Van Lommel
2018-07-06Fix layout issue with enum property separators.Brecht Van Lommel
2018-07-06Merge branch 'master' into blender2.8Philipp Oeser
Conflicts: source/blender/editors/screen/screen_edit.c
2018-07-06Merge remote-tracking branch 'origin/master' into blender2.8Sybren A. Stüvel
2018-07-06Fix crash when startup file has an image in itSybren A. Stüvel
This fixes an issue introduced in d192d723123add1dde3e9f7e9458aefcafb7e7d2. When starting up, the UI hasn't been fully initialised yet, and calling wm_event_do_depsgraph() can trigger icon updates when the startup file contains an image, causing a segfault due to a not-yet-initialised ghash for the icons.
2018-07-06fix c++ comment style in 3cc2a9b934d0Philipp Oeser
2018-07-06Ocean Modifier: removed unused refresh flagsSybren A. Stüvel
The flags were set and cleared correctly, but nothing was actually reading them.
2018-07-06Ocean Modifier: removed the MOD_OCEAN_REFRESH_ADD flagSybren A. Stüvel
The flag was only used in readfile.c, and resulted in a delayed call to BKE_ocean_add(); this call is now immediately made instead as it's not very expensive.
2018-07-06Merge branch 'master' into blender2.8Philipp Oeser
Conflicts: source/blender/editors/screen/screen_edit.c
2018-07-06Fix T55581: kill running (render) jobs when deleting a scenePhilipp Oeser
also fixed passing WM_JOB_TYPE_ANY to WM_jobs_kill_type() Reviewed By: brecht Differential Revision: https://developer.blender.org/D3498
2018-07-06Addons: silence warnings instead of disablingCampbell Barton
2018-07-06Addons: svg has been updatedCampbell Barton
2018-07-06Merge branch 'master' into 28Campbell Barton
2018-07-06Empty Object: Center images by defaultCampbell Barton
2018-07-06Fix image drag and dropCampbell Barton
- Dropping now creates empty images w/o holding Ctrl. - Dropping background images works when cursor over camera.
2018-07-06Disable addons which haven't been updatedCampbell Barton
Gave noisy warnings on startup.
2018-07-06Merge branch 'master' into blender2.8Campbell Barton
2018-07-06BKE_addons: utility to remove by nameCampbell Barton
2018-07-06Further tweaks to drawing of non-selected graph editor keyframesJoshua Leung
The previous commit only solves the problem when using the default theme using factory settings. For previously saved themes, there could still be problems, as the alpha values were still 0. This commit improves the logic here so that while keyframe points on unselected F-Curves will still get faded out (to not stick out too much from the curves they live on), but the effect will not be as pronounced (i.e. the points will stay visible all the time).
2018-07-06Fix T55775: Crash when select keyframe on object channels in Timeline editorJoshua Leung
2018-07-05Cleanup: flag checksCampbell Barton
2018-07-05Merge branch 'master' into blender2.8Campbell Barton
2018-07-05Cleanup: flag checksCampbell Barton
2018-07-05Merge branch 'master' into blender2.8Campbell Barton
2018-07-05RNA: correct callback typeCampbell Barton
Missed when changing callbacks from int to bool type.
2018-07-05RNA: use is_dirty prefix for checking updatesCampbell Barton
Common convention for read-only update checks
2018-07-05Keymap: Make Ctrl-Tab toggles pose modeCampbell Barton
Showing a pie menu is redundant since tab is already mapped to edit mode. Bypass the menu for pose mode toggle.
2018-07-05Draw Manager: simplify object mask usageCampbell Barton
Remove flag defines, use object types directly.
2018-07-05Cleanup: minor changes to last commit, #2Campbell Barton