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:
authorGermano Cavalcante <germano.costa@ig.com.br>2020-09-14 21:42:17 +0300
committerGermano Cavalcante <germano.costa@ig.com.br>2020-09-14 21:55:40 +0300
commit273bf53e8013085eb61738fae73d026e3fb67be9 (patch)
treeae3046f14e775e520d88d4d77eb1437422ed5918 /source/blender/editors/include
parentf1e34ee7faabeaebf857435e8422a68fb520e283 (diff)
Cleanup: Use 'r_' prefix for return value
Make it obvious which values are written to.
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_transform.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/include/ED_transform.h b/source/blender/editors/include/ED_transform.h
index b53740a531f..d6af119dae0 100644
--- a/source/blender/editors/include/ED_transform.h
+++ b/source/blender/editors/include/ED_transform.h
@@ -130,8 +130,8 @@ bool BIF_createTransformOrientation(struct bContext *C,
void BIF_selectTransformOrientation(struct bContext *C, struct TransformOrientation *target);
void ED_getTransformOrientationMatrix(const struct bContext *C,
- float orientation_mat[3][3],
- const short around);
+ const short around,
+ float r_orientation_mat[3][3]);
int BIF_countTransformOrientation(const struct bContext *C);