[Bf-blender-cvs] [0ffa64a45f7] blender2.8: Merge branch 'master' into blender2.8

Campbell Barton noreply at git.blender.org
Tue Oct 17 05:05:11 CEST 2017


Commit: 0ffa64a45f7d961cb079a56629bcff105c81eb56
Author: Campbell Barton
Date:   Tue Oct 17 14:06:49 2017 +1100
Branches: blender2.8
https://developer.blender.org/rB0ffa64a45f7d961cb079a56629bcff105c81eb56

Merge branch 'master' into blender2.8

===================================================================



===================================================================

diff --cc source/blender/blenkernel/BKE_paint.h
index f88dfc6f817,dff7f65b39a..3d8f7b7674b
--- a/source/blender/blenkernel/BKE_paint.h
+++ b/source/blender/blenkernel/BKE_paint.h
@@@ -58,9 -57,8 +58,9 @@@ struct StrokeCache
  struct Tex;
  struct ImagePool;
  struct UnifiedPaintSettings;
 +struct EvaluationContext;
  
- enum OverlayFlags;
+ enum eOverlayFlags;
  
  extern const char PAINT_CURSOR_SCULPT[3];
  extern const char PAINT_CURSOR_VERTEX_PAINT[3];
@@@ -91,12 -89,12 +91,12 @@@ typedef enum eOverlayControlFlags 
  						     PAINT_OVERLAY_OVERRIDE_PRIMARY | \
  						     PAINT_OVERLAY_OVERRIDE_CURSOR)
  
 -void BKE_paint_invalidate_overlay_tex(struct Scene *scene, const struct Tex *tex);
 -void BKE_paint_invalidate_cursor_overlay(struct Scene *scene, struct CurveMapping *curve);
 +void BKE_paint_invalidate_overlay_tex(struct Scene *scene, struct SceneLayer *sl, const struct Tex *tex);
 +void BKE_paint_invalidate_cursor_overlay(struct Scene *scene, struct SceneLayer *sl, struct CurveMapping *curve);
  void BKE_paint_invalidate_overlay_all(void);
- OverlayControlFlags BKE_paint_get_overlay_flags(void);
- void BKE_paint_reset_overlay_invalid(OverlayControlFlags flag);
- void BKE_paint_set_overlay_override(enum OverlayFlags flag);
+ eOverlayControlFlags BKE_paint_get_overlay_flags(void);
+ void BKE_paint_reset_overlay_invalid(eOverlayControlFlags flag);
+ void BKE_paint_set_overlay_override(enum eOverlayFlags flag);
  
  /* palettes */
  void                 BKE_palette_free(struct Palette *palette);
@@@ -124,11 -122,11 +124,11 @@@ void BKE_paint_copy(struct Paint *src, 
  
  void BKE_paint_cavity_curve_preset(struct Paint *p, int preset);
  
- short BKE_paint_object_mode_from_paint_mode(PaintMode mode);
- struct Paint *BKE_paint_get_active_from_paintmode(struct Scene *sce, PaintMode mode);
+ short BKE_paint_object_mode_from_paint_mode(ePaintMode mode);
+ struct Paint *BKE_paint_get_active_from_paintmode(struct Scene *sce, ePaintMode mode);
 -struct Paint *BKE_paint_get_active(struct Scene *sce);
 +struct Paint *BKE_paint_get_active(struct Scene *sce, struct SceneLayer *sl);
  struct Paint *BKE_paint_get_active_from_context(const struct bContext *C);
- PaintMode BKE_paintmode_get_active_from_context(const struct bContext *C);
+ ePaintMode BKE_paintmode_get_active_from_context(const struct bContext *C);
  struct Brush *BKE_paint_brush(struct Paint *paint);
  void BKE_paint_brush_set(struct Paint *paint, struct Brush *br);
  struct Palette *BKE_paint_palette(struct Paint *paint);
diff --cc source/blender/blenkernel/BKE_workspace.h
index 67868ee961a,00000000000..bff40d7c85b
mode 100644,000000..100644
--- a/source/blender/blenkernel/BKE_workspace.h
+++ b/source/blender/blenkernel/BKE_workspace.h
@@@ -1,127 -1,0 +1,127 @@@
 +/*
 + * ***** BEGIN GPL LICENSE BLOCK *****
 + *
 + * This program is free software; you can redistribute it and/or
 + * modify it under the terms of the GNU General Public License
 + * as published by the Free Software Foundation; either version 2
 + * of the License, or (at your option) any later version.
 + *
 + * This program is distributed in the hope that it will be useful,
 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 + * GNU General Public License for more details.
 + *
 + * You should have received a copy of the GNU General Public License
 + * along with this program; if not, write to the Free Software Foundation,
 + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 + *
 + * ***** END GPL LICENSE BLOCK *****
 + */
 +
 +/** \file BKE_workspace.h
 + *  \ingroup bke
 + */
 +
 +#ifndef __BKE_WORKSPACE_H__
 +#define __BKE_WORKSPACE_H__
 +
 +#include "BLI_compiler_attrs.h"
 +
 +struct bScreen;
 +struct TransformOrientation;
 +
 +/**
 + * Plan is to store the object-mode per workspace, not per object anymore.
 + * However, there's quite some work to be done for that, so for now, there is just a basic
 + * implementation of an object <-> workspace object-mode syncing for testing, with some known
 + * problems. Main problem being that the modes can get out of sync when changing object selection.
 + * Would require a pile of temporary changes to always sync modes when changing selection. So just
 + * leaving this here for some testing until object-mode is really a workspace level setting.
 + */
 +#define USE_WORKSPACE_MODE
 +
 +
 +/* -------------------------------------------------------------------- */
 +/* Create, delete, init */
 +
 +struct WorkSpace *BKE_workspace_add(struct Main *bmain, const char *name);
 +void BKE_workspace_free(struct WorkSpace *workspace);
 +void BKE_workspace_remove(struct Main *bmain, struct WorkSpace *workspace);
 +
 +struct WorkSpaceInstanceHook *BKE_workspace_instance_hook_create(const struct Main *bmain);
 +void BKE_workspace_instance_hook_free(const struct Main *bmain, struct WorkSpaceInstanceHook *hook);
 +
 +struct WorkSpaceLayout *BKE_workspace_layout_add(
 +        struct WorkSpace *workspace,
 +        struct bScreen *screen,
 +        const char *name) ATTR_NONNULL();
 +void BKE_workspace_layout_remove(
 +        struct Main *bmain,
 +        struct WorkSpace *workspace, struct WorkSpaceLayout *layout) ATTR_NONNULL();
 +
 +
 +/* -------------------------------------------------------------------- */
 +/* General Utils */
 +
 +void BKE_workspace_transform_orientation_remove(
 +        struct WorkSpace *workspace, struct TransformOrientation *orientation) ATTR_NONNULL();
 +struct TransformOrientation *BKE_workspace_transform_orientation_find(
 +        const struct WorkSpace *workspace, const int index) ATTR_NONNULL();
 +int BKE_workspace_transform_orientation_get_index(
 +        const struct WorkSpace *workspace, const struct TransformOrientation *orientation) ATTR_NONNULL();
 +
 +struct WorkSpaceLayout *BKE_workspace_layout_find(
 +        const struct WorkSpace *workspace, const struct bScreen *screen) ATTR_NONNULL() ATTR_WARN_UNUSED_RESULT;
 +struct WorkSpaceLayout *BKE_workspace_layout_find_global(
 +        const struct Main *bmain, const struct bScreen *screen,
 +        struct WorkSpace **r_workspace) ATTR_NONNULL(1, 2);
 +
 +struct WorkSpaceLayout *BKE_workspace_layout_iter_circular(
 +        const struct WorkSpace *workspace, struct WorkSpaceLayout *start,
 +        bool (*callback)(const struct WorkSpaceLayout *layout, void *arg),
 +        void *arg, const bool iter_backward);
 +
 +
 +/* -------------------------------------------------------------------- */
 +/* Getters/Setters */
 +
 +#define GETTER_ATTRS ATTR_NONNULL() ATTR_WARN_UNUSED_RESULT
 +#define SETTER_ATTRS ATTR_NONNULL(1)
 +
 +struct WorkSpace *BKE_workspace_active_get(struct WorkSpaceInstanceHook *hook) GETTER_ATTRS;
 +void       BKE_workspace_active_set(struct WorkSpaceInstanceHook *hook, struct WorkSpace *workspace) SETTER_ATTRS;
 +struct WorkSpaceLayout *BKE_workspace_active_layout_get(const struct WorkSpaceInstanceHook *hook) GETTER_ATTRS;
 +void             BKE_workspace_active_layout_set(struct WorkSpaceInstanceHook *hook, struct WorkSpaceLayout *layout) SETTER_ATTRS;
 +struct bScreen *BKE_workspace_active_screen_get(const struct WorkSpaceInstanceHook *hook) GETTER_ATTRS;
 +void            BKE_workspace_active_screen_set(
 +        struct WorkSpaceInstanceHook *hook, struct WorkSpace *workspace, struct bScreen *screen) SETTER_ATTRS;
- enum ObjectMode BKE_workspace_object_mode_get(const struct WorkSpace *workspace) GETTER_ATTRS;
++enum eObjectMode BKE_workspace_object_mode_get(const struct WorkSpace *workspace) GETTER_ATTRS;
 +#ifdef USE_WORKSPACE_MODE
- void            BKE_workspace_object_mode_set(struct WorkSpace *workspace, const enum ObjectMode mode) SETTER_ATTRS;
++void            BKE_workspace_object_mode_set(struct WorkSpace *workspace, const enum eObjectMode mode) SETTER_ATTRS;
 +#endif
 +struct ListBase *BKE_workspace_transform_orientations_get(struct WorkSpace *workspace) GETTER_ATTRS;
 +struct SceneLayer *BKE_workspace_render_layer_get(const struct WorkSpace *workspace) GETTER_ATTRS;
 +void               BKE_workspace_render_layer_set(struct WorkSpace *workspace, struct SceneLayer *layer) SETTER_ATTRS;
 +struct ListBase *BKE_workspace_layouts_get(struct WorkSpace *workspace) GETTER_ATTRS;
 +
 +const char *BKE_workspace_layout_name_get(const struct WorkSpaceLayout *layout) GETTER_ATTRS;
 +void        BKE_workspace_layout_name_set(
 +        struct WorkSpace *workspace, struct WorkSpaceLayout *layout, const char *new_name) ATTR_NONNULL();
 +struct bScreen *BKE_workspace_layout_screen_get(const struct WorkSpaceLayout *layout) GETTER_ATTRS;
 +void            BKE_workspace_layout_screen_set(struct WorkSpaceLayout *layout, struct bScreen *screen) SETTER_ATTRS;
 +
 +struct WorkSpaceLayout *BKE_workspace_hook_layout_for_workspace_get(
 +        const struct WorkSpaceInstanceHook *hook, const struct WorkSpace *workspace) GETTER_ATTRS;
 +void             BKE_workspace_hook_layout_for_workspace_set(
 +        struct WorkSpaceInstanceHook *hook, struct WorkSpace *workspace, struct WorkSpaceLayout *layout) ATTR_NONNULL();
 +
 +struct ViewRender *BKE_workspace_view_render_get(struct WorkSpace *workspace) GETTER_ATTRS;
 +
 +/* flags */
 +bool BKE_workspace_use_scene_settings_get(const struct WorkSpace *workspace) GETTER_ATTRS;
 +void BKE_workspace_use_scene_settings_set(struct WorkSpace *workspace, bool value) SETTER_ATTRS;
 +
 +#undef GETTER_ATTRS
 +#undef SETTER_ATTRS
 +
 +#endif /* __BKE_WORKSPACE_H__ */
diff --cc source/blender/blenkernel/intern/paint.c
index 7acddbbb90e,c1ad31a1cab..a2c59434862
--- a/source/blender/blenkernel/intern/paint.c
+++ b/source/blender/blenkernel/intern/paint.c
@@@ -73,11 -72,11 +73,11 @@@ const char PAINT_CURSOR_VERTEX_PAINT[3
  const char PAINT_CURSOR_WEIGHT_PAINT[3] = {200, 200, 255};
  const char PAINT_CURSOR_TEXTURE_PAINT[3] = {255, 255, 255};
  
- static OverlayControlFlags overlay_flags = 0;
+ static eOverlayControlFlags overlay_flags = 0;
  
 -void BKE_paint_invalidate_overlay_tex(Scene *scene, const Tex *tex)
 +void BKE_paint_invalidate_overlay_tex(Scene *scene, SceneLayer *sl, const Tex *tex)
  {
 -	Paint *p = BKE_paint_get_active(scene);
 +	Paint *p = BKE_paint_

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list