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/BLI_rect.h
parent2061f91741861f5646974b4960b5ff03d509f5eb (diff)
bugfix [#20480] crash/lock-up for certain aspect ratios
Diffstat (limited to 'source/blender/blenlib/BLI_rect.h')
-rw-r--r--source/blender/blenlib/BLI_rect.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_rect.h b/source/blender/blenlib/BLI_rect.h
index c9ba0307118..52f645705cc 100644
--- a/source/blender/blenlib/BLI_rect.h
+++ b/source/blender/blenlib/BLI_rect.h
@@ -47,6 +47,7 @@ extern "C" {
* @return True if @a rect is empty.
*/
int BLI_rcti_is_empty(struct rcti *rect);
+int BLI_rctf_is_empty(struct rctf *rect);
void BLI_init_rctf(struct rctf *rect, float xmin, float xmax, float ymin, float ymax);
void BLI_init_rcti(struct rcti *rect, int xmin, int xmax, int ymin, int ymax);
void BLI_translate_rctf(struct rctf *rect, float x, float y);