2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2009-05-08 16:45:52 +00:00
|
|
|
#ifndef SkSize_DEFINED
|
|
|
|
#define SkSize_DEFINED
|
|
|
|
|
2012-11-26 20:18:00 +00:00
|
|
|
#include "SkScalar.h"
|
|
|
|
|
2009-05-08 16:45:52 +00:00
|
|
|
template <typename T> struct SkTSize {
|
|
|
|
T fWidth;
|
|
|
|
T fHeight;
|
|
|
|
|
2010-02-11 11:09:39 +00:00
|
|
|
static SkTSize Make(T w, T h) {
|
|
|
|
SkTSize s;
|
|
|
|
s.fWidth = w;
|
|
|
|
s.fHeight = h;
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2009-05-08 16:45:52 +00:00
|
|
|
void set(T w, T h) {
|
|
|
|
fWidth = w;
|
|
|
|
fHeight = h;
|
|
|
|
}
|
|
|
|
|
2009-05-13 14:00:33 +00:00
|
|
|
/** Returns true iff fWidth == 0 && fHeight == 0
|
|
|
|
*/
|
|
|
|
bool isZero() const {
|
|
|
|
return 0 == fWidth && 0 == fHeight;
|
|
|
|
}
|
|
|
|
|
2009-05-08 16:45:52 +00:00
|
|
|
/** Returns true if either widht or height are <= 0 */
|
|
|
|
bool isEmpty() const {
|
|
|
|
return fWidth <= 0 || fHeight <= 0;
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2009-05-08 16:45:52 +00:00
|
|
|
/** Set the width and height to 0 */
|
|
|
|
void setEmpty() {
|
|
|
|
fWidth = fHeight = 0;
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
|
|
|
T width() const { return fWidth; }
|
|
|
|
T height() const { return fHeight; }
|
|
|
|
|
2009-05-08 16:45:52 +00:00
|
|
|
/** If width or height is < 0, it is set to 0 */
|
|
|
|
void clampNegToZero() {
|
|
|
|
if (fWidth < 0) {
|
|
|
|
fWidth = 0;
|
|
|
|
}
|
|
|
|
if (fHeight < 0) {
|
|
|
|
fHeight = 0;
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2009-06-12 02:06:36 +00:00
|
|
|
bool equals(T w, T h) const {
|
|
|
|
return fWidth == w && fHeight == h;
|
|
|
|
}
|
2009-05-08 16:45:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-02-11 11:09:39 +00:00
|
|
|
typedef SkTSize<int32_t> SkISize;
|
2009-05-08 16:45:52 +00:00
|
|
|
|
|
|
|
struct SkSize : public SkTSize<SkScalar> {
|
2010-02-11 11:17:00 +00:00
|
|
|
static SkSize Make(SkScalar w, SkScalar h) {
|
|
|
|
SkSize s;
|
|
|
|
s.fWidth = w;
|
|
|
|
s.fHeight = h;
|
|
|
|
return s;
|
|
|
|
}
|
2012-08-23 18:09:54 +00:00
|
|
|
|
|
|
|
|
2009-05-08 16:45:52 +00:00
|
|
|
SkSize& operator=(const SkISize& src) {
|
|
|
|
this->set(SkIntToScalar(src.fWidth), SkIntToScalar(src.fHeight));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2010-06-15 00:57:50 +00:00
|
|
|
SkISize toRound() const {
|
2009-05-08 16:45:52 +00:00
|
|
|
SkISize s;
|
2013-12-17 19:22:07 +00:00
|
|
|
s.set(SkScalarRoundToInt(fWidth), SkScalarRoundToInt(fHeight));
|
2009-05-08 16:45:52 +00:00
|
|
|
return s;
|
|
|
|
}
|
2010-06-15 00:57:50 +00:00
|
|
|
|
|
|
|
SkISize toCeil() const {
|
2009-05-08 16:45:52 +00:00
|
|
|
SkISize s;
|
2013-12-17 19:22:07 +00:00
|
|
|
s.set(SkScalarCeilToInt(fWidth), SkScalarCeilToInt(fHeight));
|
2009-05-08 16:45:52 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2010-06-15 00:57:50 +00:00
|
|
|
SkISize toFloor() const {
|
2009-05-08 16:45:52 +00:00
|
|
|
SkISize s;
|
2013-12-17 19:22:07 +00:00
|
|
|
s.set(SkScalarFloorToInt(fWidth), SkScalarFloorToInt(fHeight));
|
2009-05-08 16:45:52 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|