git-svn-id: http://skia.googlecode.com/svn/trunk@210 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@android.com 2009-06-12 02:06:36 +00:00
Родитель 1220e1c28a
Коммит f16c899a74
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -37,6 +37,10 @@ template <typename T> struct SkTSize {
fHeight = 0;
}
}
bool equals(T w, T h) const {
return fWidth == w && fHeight == h;
}
};
template <typename T>