Home
last modified time | relevance | path

Searched defs:SkISize (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/skia/include/core/
H A DSkSize.h16 struct SkISize { struct
20 static constexpr SkISize Make(int32_t w, int32_t h) { return {w, h}; } in Make() argument
22 static constexpr SkISize MakeEmpty() { return {0, 0}; } in MakeEmpty() argument
24 void set(int32_t w, int32_t h) { *this = SkISize{w, h}; } in set() argument
44 static inline bool operator==(const SkISize& a, const SkISize& b) { argument
/aosp_15_r20/external/skia/include/codec/
H A DSkCodec.h831 virtual bool onDimensionsSupported(const SkISize&) { in onDimensionsSupported()