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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-04-17 07:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:21:24 +0300
commite12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 (patch)
tree8cf3453d12edb177a218ef8009357518ec6cab6a /source/blender/windowmanager/gizmo/wm_gizmo_fn.h
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
Diffstat (limited to 'source/blender/windowmanager/gizmo/wm_gizmo_fn.h')
-rw-r--r--source/blender/windowmanager/gizmo/wm_gizmo_fn.h95
1 files changed, 47 insertions, 48 deletions
diff --git a/source/blender/windowmanager/gizmo/wm_gizmo_fn.h b/source/blender/windowmanager/gizmo/wm_gizmo_fn.h
index e23c3d77b7f..2aada0f202a 100644
--- a/source/blender/windowmanager/gizmo/wm_gizmo_fn.h
+++ b/source/blender/windowmanager/gizmo/wm_gizmo_fn.h
@@ -26,61 +26,60 @@
#include "BLI_compiler_attrs.h"
/* wmGizmoGroup */
-typedef bool (*wmGizmoGroupFnPoll)(
- const struct bContext *, struct wmGizmoGroupType *)
- ATTR_WARN_UNUSED_RESULT;
-typedef void (*wmGizmoGroupFnInit)(
- const struct bContext *, struct wmGizmoGroup *);
-typedef void (*wmGizmoGroupFnRefresh)(
- const struct bContext *, struct wmGizmoGroup *);
-typedef void (*wmGizmoGroupFnDrawPrepare)(
- const struct bContext *, struct wmGizmoGroup *);
-typedef void (*wmGizmoGroupFnInvokePrepare)(
- const struct bContext *, struct wmGizmoGroup *, struct wmGizmo *);
-typedef struct wmKeyMap *(*wmGizmoGroupFnSetupKeymap)(
- const struct wmGizmoGroupType *, struct wmKeyConfig *)
- ATTR_WARN_UNUSED_RESULT;
-typedef void (*wmGizmoGroupFnMsgBusSubscribe)(
- const struct bContext *, struct wmGizmoGroup *, struct wmMsgBus *);
+typedef bool (*wmGizmoGroupFnPoll)(const struct bContext *,
+ struct wmGizmoGroupType *) ATTR_WARN_UNUSED_RESULT;
+typedef void (*wmGizmoGroupFnInit)(const struct bContext *, struct wmGizmoGroup *);
+typedef void (*wmGizmoGroupFnRefresh)(const struct bContext *, struct wmGizmoGroup *);
+typedef void (*wmGizmoGroupFnDrawPrepare)(const struct bContext *, struct wmGizmoGroup *);
+typedef void (*wmGizmoGroupFnInvokePrepare)(const struct bContext *,
+ struct wmGizmoGroup *,
+ struct wmGizmo *);
+typedef struct wmKeyMap *(*wmGizmoGroupFnSetupKeymap)(const struct wmGizmoGroupType *,
+ struct wmKeyConfig *)ATTR_WARN_UNUSED_RESULT;
+typedef void (*wmGizmoGroupFnMsgBusSubscribe)(const struct bContext *,
+ struct wmGizmoGroup *,
+ struct wmMsgBus *);
/* wmGizmo */
/* See: wmGizmoType for docs on each type. */
-typedef void (*wmGizmoFnSetup)(struct wmGizmo *);
-typedef void (*wmGizmoFnDraw)(const struct bContext *, struct wmGizmo *);
-typedef void (*wmGizmoFnDrawSelect)(const struct bContext *, struct wmGizmo *, int);
-typedef int (*wmGizmoFnTestSelect)(struct bContext *, struct wmGizmo *, const int mval[2]);
-typedef int (*wmGizmoFnModal)(struct bContext *, struct wmGizmo *, const struct wmEvent *, eWM_GizmoFlagTweak);
-typedef void (*wmGizmoFnPropertyUpdate)(struct wmGizmo *, struct wmGizmoProperty *);
-typedef void (*wmGizmoFnMatrixBasisGet)(const struct wmGizmo *, float[4][4]);
-typedef int (*wmGizmoFnInvoke)(struct bContext *, struct wmGizmo *, const struct wmEvent *);
-typedef void (*wmGizmoFnExit)(struct bContext *, struct wmGizmo *, const bool);
-typedef int (*wmGizmoFnCursorGet)(struct wmGizmo *);
-typedef void (*wmGizmoFnSelectRefresh)(struct wmGizmo *);
-typedef void (*wmGizmoFnFree)(struct wmGizmo *);
+typedef void (*wmGizmoFnSetup)(struct wmGizmo *);
+typedef void (*wmGizmoFnDraw)(const struct bContext *, struct wmGizmo *);
+typedef void (*wmGizmoFnDrawSelect)(const struct bContext *, struct wmGizmo *, int);
+typedef int (*wmGizmoFnTestSelect)(struct bContext *, struct wmGizmo *, const int mval[2]);
+typedef int (*wmGizmoFnModal)(struct bContext *,
+ struct wmGizmo *,
+ const struct wmEvent *,
+ eWM_GizmoFlagTweak);
+typedef void (*wmGizmoFnPropertyUpdate)(struct wmGizmo *, struct wmGizmoProperty *);
+typedef void (*wmGizmoFnMatrixBasisGet)(const struct wmGizmo *, float[4][4]);
+typedef int (*wmGizmoFnInvoke)(struct bContext *, struct wmGizmo *, const struct wmEvent *);
+typedef void (*wmGizmoFnExit)(struct bContext *, struct wmGizmo *, const bool);
+typedef int (*wmGizmoFnCursorGet)(struct wmGizmo *);
+typedef void (*wmGizmoFnSelectRefresh)(struct wmGizmo *);
+typedef void (*wmGizmoFnFree)(struct wmGizmo *);
/* wmGizmoProperty ('value' type defined by 'wmGizmoProperty.data_type') */
-typedef void (*wmGizmoPropertyFnGet)(
- const struct wmGizmo *, struct wmGizmoProperty *,
- /* typically 'float *' */
- void *value);
-typedef void (*wmGizmoPropertyFnSet)(
- const struct wmGizmo *, struct wmGizmoProperty *,
- /* typically 'const float *' */
- const void *value);
-typedef void (*wmGizmoPropertyFnRangeGet)(
- const struct wmGizmo *, struct wmGizmoProperty *,
- /* typically 'float[2]' */
- void *range);
-typedef void (*wmGizmoPropertyFnFree)(
- const struct wmGizmo *, struct wmGizmoProperty *);
+typedef void (*wmGizmoPropertyFnGet)(const struct wmGizmo *,
+ struct wmGizmoProperty *,
+ /* typically 'float *' */
+ void *value);
+typedef void (*wmGizmoPropertyFnSet)(const struct wmGizmo *,
+ struct wmGizmoProperty *,
+ /* typically 'const float *' */
+ const void *value);
+typedef void (*wmGizmoPropertyFnRangeGet)(const struct wmGizmo *,
+ struct wmGizmoProperty *,
+ /* typically 'float[2]' */
+ void *range);
+typedef void (*wmGizmoPropertyFnFree)(const struct wmGizmo *, struct wmGizmoProperty *);
typedef struct wmGizmoPropertyFnParams {
- wmGizmoPropertyFnGet value_get_fn;
- wmGizmoPropertyFnSet value_set_fn;
- wmGizmoPropertyFnRangeGet range_get_fn;
- wmGizmoPropertyFnFree free_fn;
- void *user_data;
+ wmGizmoPropertyFnGet value_get_fn;
+ wmGizmoPropertyFnSet value_set_fn;
+ wmGizmoPropertyFnRangeGet range_get_fn;
+ wmGizmoPropertyFnFree free_fn;
+ void *user_data;
} wmGizmoPropertyFnParams;
-#endif /* __WM_GIZMO_FN_H__ */
+#endif /* __WM_GIZMO_FN_H__ */