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>2015-02-04 19:54:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-02-04 19:56:24 +0300
commit4339caf7cb95340dcdc7c050af46916ed1b34811 (patch)
treeb31613fc0893c3bcf05e79a2bd0d04e97283e5db /source/blender/makesdna
parent292444e3f5c2c1df45a949cca0a0be430a5ba57c (diff)
Cleanup: name flip x/y
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_view3d_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h
index 0c290ab8435..543a95cc120 100644
--- a/source/blender/makesdna/DNA_view3d_types.h
+++ b/source/blender/makesdna/DNA_view3d_types.h
@@ -344,8 +344,8 @@ enum {
V3D_BGPIC_CAMERA_CROP = (1 << 6), /* crop out the image */
/* Axis flip options */
- V3D_BGPIC_FLIP_H = (1 << 7),
- V3D_BGPIC_FLIP_V = (1 << 8)
+ V3D_BGPIC_FLIP_X = (1 << 7),
+ V3D_BGPIC_FLIP_Y = (1 << 8),
};
#define V3D_BGPIC_EXPANDED (V3D_BGPIC_EXPANDED | V3D_BGPIC_CAMERACLIP)