f59799139b
git-svn-id: http://skia.googlecode.com/svn/trunk@577 2bbb7eff-a529-9590-31e7-b0007b416f81
106 lines
2.2 KiB
C++
106 lines
2.2 KiB
C++
|
|
|
|
#ifndef SkSize_DEFINED
|
|
#define SkSize_DEFINED
|
|
|
|
template <typename T> struct SkTSize {
|
|
T fWidth;
|
|
T fHeight;
|
|
|
|
static SkTSize Make(T w, T h) {
|
|
SkTSize s;
|
|
s.fWidth = w;
|
|
s.fHeight = h;
|
|
return s;
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
typedef SkTSize<int32_t> SkISize;
|
|
|
|
#include "SkScalar.h"
|
|
|
|
struct SkSize : public SkTSize<SkScalar> {
|
|
static SkSize Make(SkScalar w, SkScalar h) {
|
|
SkSize s;
|
|
s.fWidth = w;
|
|
s.fHeight = h;
|
|
return s;
|
|
}
|
|
|
|
|
|
SkSize& operator=(const SkISize& src) {
|
|
this->set(SkIntToScalar(src.fWidth), SkIntToScalar(src.fHeight));
|
|
return *this;
|
|
}
|
|
|
|
SkISize toRound() const {
|
|
SkISize s;
|
|
s.set(SkScalarRound(fWidth), SkScalarRound(fHeight));
|
|
return s;
|
|
}
|
|
|
|
SkISize toCeil() const {
|
|
SkISize s;
|
|
s.set(SkScalarCeil(fWidth), SkScalarCeil(fHeight));
|
|
return s;
|
|
}
|
|
|
|
SkISize toFloor() const {
|
|
SkISize s;
|
|
s.set(SkScalarFloor(fWidth), SkScalarFloor(fHeight));
|
|
return s;
|
|
}
|
|
};
|
|
|
|
#endif
|