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>2021-08-31 09:29:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-08-31 10:02:47 +0300
commitfa4f9292e16ce6a9253164ea731870c6d0161848 (patch)
tree988f3d289f45b2f4454a9632f2df563601800417 /source/blender/editors/transform/transform_orientations.h
parentd718d6b4493429a1e688e874fd76963f98e3d034 (diff)
Transform: avoid passing the context to extended orientation functions
This makes it possible to calculate orientation from functions that don't have the context.
Diffstat (limited to 'source/blender/editors/transform/transform_orientations.h')
-rw-r--r--source/blender/editors/transform/transform_orientations.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_orientations.h b/source/blender/editors/transform/transform_orientations.h
index de8c9b165c1..1da369c8307 100644
--- a/source/blender/editors/transform/transform_orientations.h
+++ b/source/blender/editors/transform/transform_orientations.h
@@ -58,7 +58,8 @@ enum {
};
#define ORIENTATION_USE_PLANE(ty) ELEM(ty, ORIENTATION_NORMAL, ORIENTATION_EDGE, ORIENTATION_FACE)
-int getTransformOrientation_ex(const struct bContext *C,
+int getTransformOrientation_ex(ViewLayer *view_layer,
+ const View3D *v3d,
struct Object *ob,
struct Object *obedit,
float normal[3],