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>2012-09-13 06:28:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-13 06:28:48 +0400
commitc5310521f8d9099fc36431bae76dd0a402cc077e (patch)
treed60e9f1807d8790355109fdf7975db4df45c7383 /source/blender/editors/include/ED_mask.h
parentab48f2108bc8ff1dfcc34e2f395debac97be7826 (diff)
fix for drawing non 1:1 aspect masks, transform and selection still need support.
Diffstat (limited to 'source/blender/editors/include/ED_mask.h')
-rw-r--r--source/blender/editors/include/ED_mask.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_mask.h b/source/blender/editors/include/ED_mask.h
index 88667729eee..8ebf932fd96 100644
--- a/source/blender/editors/include/ED_mask.h
+++ b/source/blender/editors/include/ED_mask.h
@@ -56,7 +56,8 @@ void ED_operatormacros_mask(void);
void ED_mask_draw(const bContext *C, const char draw_flag, const char draw_type);
void ED_mask_draw_region(struct Mask *mask, struct ARegion *ar,
const char draw_flag, const char draw_type,
- int width, int height,
+ const int width_i, const int height_i,
+ const float aspx, const float aspy,
const short do_scale_applied, const short do_post_draw,
float stabmat[4][4],
const bContext *C);