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:
authorAntonioya <blendergit@gmail.com>2018-10-05 09:59:16 +0300
committerAntonioya <blendergit@gmail.com>2018-10-05 09:59:33 +0300
commit8b05d38305c4af49848b41e307ceb3ed424f5fbc (patch)
treec6e936f183ab0d96259cd3d7d08f8088dfbb4f63 /source/blender/makesdna
parentf36f0293210128666f29f0be5c2dfb38bb3421e2 (diff)
GP: Cleanup names and code
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_gpencil_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h
index d991bb34a0a..b9df4137862 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -374,8 +374,8 @@ typedef struct bGPdata {
int totstroke;
int totpoint;
char pad_3[4];
- bGPdata_runtime runtime;
bGPgrid grid;
+ bGPdata_runtime runtime;
} bGPdata;
/* bGPdata->flag */
@@ -473,10 +473,10 @@ typedef enum eGP_DepthOrdering {
/* gpencil_grid_axis */
enum {
- V3D_GP_GRID_AXIS_LOCK = (1 << 0),
- V3D_GP_GRID_AXIS_X = (1 << 1),
- V3D_GP_GRID_AXIS_Y = (1 << 2),
- V3D_GP_GRID_AXIS_Z = (1 << 3),
+ GP_GRID_AXIS_LOCK = (1 << 0),
+ GP_GRID_AXIS_X = (1 << 1),
+ GP_GRID_AXIS_Y = (1 << 2),
+ GP_GRID_AXIS_Z = (1 << 3),
};
/* ***************************************** */