Home
last modified time | relevance | path

Searched defs:gr_sp (Results 1 - 1 of 1) sorted by relevance

/third_party/skia/src/gpu/
H A DGrRefCnt.h24 class gr_sp { class
42 constexpr gr_sp() : fPtr(nullptr) {} in gr_sp() function in gr_sp
43 constexpr gr_sp(std::nullptr_t) : fPtr(nullptr) {} in gr_sp() function in gr_sp
49 gr_sp(const gr_sp& that) : fPtr(SafeRef(that.get())) {} in gr_sp() function in gr_sp
54 gr_sp(const gr_sp<U, URefBase, UUnrefBase, Ref, Unref>& that) : fPtr(SafeRef(that.get())) {} in gr_sp() argument
56 gr_sp(const sk_sp<T>& that) : fPtr(SafeRef(that.get())) {} in gr_sp() function in gr_sp
64 gr_sp(gr_sp&& that) : fPtr(that.release()) {} gr_sp() function in gr_sp
70 gr_sp(sk_sp<T>&& that) : fPtr(SafeRef(that.get())) {} gr_sp() function in gr_sp
76 explicit gr_sp(T* obj) : fPtr(obj) {} gr_sp() function in gr_sp
[all...]

Completed in 2 milliseconds