Home | History | Annotate | Download | only in core

Lines Matching refs:SkTo

211 template <typename D, typename S> D SkTo(S s) {
215 #define SkToS8(x) SkTo<int8_t>(x)
216 #define SkToU8(x) SkTo<uint8_t>(x)
217 #define SkToS16(x) SkTo<int16_t>(x)
218 #define SkToU16(x) SkTo<uint16_t>(x)
219 #define SkToS32(x) SkTo<int32_t>(x)
220 #define SkToU32(x) SkTo<uint32_t>(x)
221 #define SkToInt(x) SkTo<int>(x)
222 #define SkToUInt(x) SkTo<unsigned>(x)
223 #define SkToSizeT(x) SkTo<size_t>(x)