HomeSort by relevance Sort by last modified time
    Searched defs:SkISize (Results 1 - 2 of 2) sorted by null

  /external/skia/include/core/
SkSize.h 13 struct SkISize {
17 static SkISize Make(int32_t w, int32_t h) { return {w, h}; }
19 static SkISize MakeEmpty() { return {0, 0}; }
21 void set(int32_t w, int32_t h) { *this = SkISize{w, h}; }
39 static inline bool operator==(const SkISize& a, const SkISize& b) {
43 static inline bool operator!=(const SkISize& a, const SkISize& b) { return !(a == b); }
53 static SkSize Make(const SkISize& src) {
57 SkSize& operator=(const SkISize& src)
    [all...]
  /external/skqp/include/core/
SkSize.h 13 struct SkISize {
17 static SkISize Make(int32_t w, int32_t h) { return {w, h}; }
19 static SkISize MakeEmpty() { return {0, 0}; }
21 void set(int32_t w, int32_t h) { *this = SkISize{w, h}; }
39 static inline bool operator==(const SkISize& a, const SkISize& b) {
43 static inline bool operator!=(const SkISize& a, const SkISize& b) { return !(a == b); }
53 static SkSize Make(const SkISize& src) {
57 SkSize& operator=(const SkISize& src)
    [all...]

Completed in 110 milliseconds