diff options
author | archshift <admin@archshift.com> | 2014-04-28 07:21:46 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-04-28 07:21:46 +0200 |
commit | ff48c8bed3a7329b57f3889b36492f31e6d44700 (patch) | |
tree | db1058aa6b4f954957d6e5bb726ff8dcb30018c1 /src/common | |
parent | add missing bswap functions (diff) | |
download | yuzu-ff48c8bed3a7329b57f3889b36492f31e6d44700.tar yuzu-ff48c8bed3a7329b57f3889b36492f31e6d44700.tar.gz yuzu-ff48c8bed3a7329b57f3889b36492f31e6d44700.tar.bz2 yuzu-ff48c8bed3a7329b57f3889b36492f31e6d44700.tar.lz yuzu-ff48c8bed3a7329b57f3889b36492f31e6d44700.tar.xz yuzu-ff48c8bed3a7329b57f3889b36492f31e6d44700.tar.zst yuzu-ff48c8bed3a7329b57f3889b36492f31e6d44700.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/common_types.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/common_types.h b/src/common/common_types.h index 4289b88d3..50cf18738 100644 --- a/src/common/common_types.h +++ b/src/common/common_types.h @@ -101,15 +101,15 @@ union t128 { }; /// Rectangle data structure -class Rect { +class BasicRect { public: - Rect(int x0=0, int y0=0, int x1=0, int y1=0) { + BasicRect(int x0=0, int y0=0, int x1=0, int y1=0) { x0_ = x0; y0_ = y0; x1_ = x1; y1_ = y1; } - ~Rect() { } + ~BasicRect() { } int x0_; ///< Rect top left X-coordinate int y0_; ///< Rect top left Y-coordinate @@ -119,7 +119,7 @@ public: inline u32 width() const { return abs(x1_ - x0_); } inline u32 height() const { return abs(y1_ - y0_); } - inline bool operator == (const Rect& val) const { + inline bool operator == (const BasicRect& val) const { return (x0_ == val.x0_ && y0_ == val.y0_ && x1_ == val.x1_ && y1_ == val.y1_); } }; |