aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMike Reed <reed@google.com>2009-09-14 12:12:54 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2009-09-14 12:12:54 -0700
commite0ba61416a44bc578cb9b099f5c7e836603500da (patch)
tree3ebe39a517528fd099a4c1b92c6ce6d7fe715c2b /include
parent19691937f8c61144ca209a5a5f4a64a659bf47cc (diff)
parentcf40b36a8dbdf473010b780c4e01ee37693d0116 (diff)
downloadexternal_skia-e0ba61416a44bc578cb9b099f5c7e836603500da.zip
external_skia-e0ba61416a44bc578cb9b099f5c7e836603500da.tar.gz
external_skia-e0ba61416a44bc578cb9b099f5c7e836603500da.tar.bz2
am cf40b36a: Merge change 24882 into eclair
Merge commit 'cf40b36a8dbdf473010b780c4e01ee37693d0116' into eclair-plus-aosp * commit 'cf40b36a8dbdf473010b780c4e01ee37693d0116': add SkSize.h
Diffstat (limited to 'include')
-rw-r--r--include/core/SkSize.h90
1 files changed, 90 insertions, 0 deletions
diff --git a/include/core/SkSize.h b/include/core/SkSize.h
new file mode 100644
index 0000000..d432102
--- /dev/null
+++ b/include/core/SkSize.h
@@ -0,0 +1,90 @@
+
+
+#ifndef SkSize_DEFINED
+#define SkSize_DEFINED
+
+template <typename T> struct SkTSize {
+ T fWidth;
+ T fHeight;
+
+ void set(T w, T h) {
+ fWidth = w;
+ fHeight = h;
+ }
+
+ /** Returns true iff fWidth == 0 && fHeight == 0
+ */
+ bool isZero() const {
+ return 0 == fWidth && 0 == fHeight;
+ }
+
+ /** Returns true if either widht or height are <= 0 */
+ bool isEmpty() const {
+ return fWidth <= 0 || fHeight <= 0;
+ }
+
+ /** Set the width and height to 0 */
+ void setEmpty() {
+ fWidth = fHeight = 0;
+ }
+
+ T width() const { return fWidth; }
+ T height() const { return fHeight; }
+
+ /** If width or height is < 0, it is set to 0 */
+ void clampNegToZero() {
+ if (fWidth < 0) {
+ fWidth = 0;
+ }
+ if (fHeight < 0) {
+ fHeight = 0;
+ }
+ }
+
+ bool equals(T w, T h) const {
+ return fWidth == w && fHeight == h;
+ }
+};
+
+template <typename T>
+static inline bool operator==(const SkTSize<T>& a, const SkTSize<T>& b) {
+ return a.fWidth == b.fWidth && a.fHeight == b.fHeight;
+}
+
+template <typename T>
+static inline bool operator!=(const SkTSize<T>& a, const SkTSize<T>& b) {
+ return !(a == b);
+}
+
+///////////////////////////////////////////////////////////////////////////////
+
+struct SkISize : public SkTSize<int32_t> {};
+
+#include "SkScalar.h"
+
+struct SkSize : public SkTSize<SkScalar> {
+ SkSize& operator=(const SkISize& src) {
+ this->set(SkIntToScalar(src.fWidth), SkIntToScalar(src.fHeight));
+ return *this;
+ }
+
+ SkISize round() const {
+ SkISize s;
+ s.set(SkScalarRound(fWidth), SkScalarRound(fHeight));
+ return s;
+ }
+
+ SkISize ceil() const {
+ SkISize s;
+ s.set(SkScalarCeil(fWidth), SkScalarCeil(fHeight));
+ return s;
+ }
+
+ SkISize floor() const {
+ SkISize s;
+ s.set(SkScalarFloor(fWidth), SkScalarFloor(fHeight));
+ return s;
+ }
+};
+
+#endif