Searched defs:SkISize (Results 1 – 2 of 2) sorted by relevance
13 struct SkISize { struct17 static constexpr SkISize Make(int32_t w, int32_t h) { return {w, h}; } in Make() argument19 static constexpr SkISize MakeEmpty() { return {0, 0}; } in MakeEmpty() argument21 void set(int32_t w, int32_t h) { *this = SkISize{w, h}; } in set() argument41 static inline bool operator==(const SkISize& a, const SkISize& b) { argument
758 virtual bool onDimensionsSupported(const SkISize&) { in onDimensionsSupported()