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>2010-02-16 18:59:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-16 18:59:36 +0300
commitbc9b873f60d414a5247063e0ad6ad0a9325d3d2f (patch)
tree403b5aa72e9397ba5ceb97f8be7cc77914609b99 /source/blender/blenlib/intern/rct.c
parent2061f91741861f5646974b4960b5ff03d509f5eb (diff)
bugfix [#20480] crash/lock-up for certain aspect ratios
Diffstat (limited to 'source/blender/blenlib/intern/rct.c')
-rw-r--r--source/blender/blenlib/intern/rct.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/rct.c b/source/blender/blenlib/intern/rct.c
index 221aaa725d6..959d8be466f 100644
--- a/source/blender/blenlib/intern/rct.c
+++ b/source/blender/blenlib/intern/rct.c
@@ -48,6 +48,12 @@ int BLI_rcti_is_empty(rcti * rect)
(rect->ymax<=rect->ymin));
}
+int BLI_rctf_is_empty(rctf * rect)
+{
+ return ((rect->xmax<=rect->xmin) ||
+ (rect->ymax<=rect->ymin));
+}
+
int BLI_in_rcti(rcti * rect, int x, int y)
{