Home
last modified time | relevance | path

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

/external/skia/src/gpu/ganesh/
DGrRefCnt.h37 constexpr gr_sp() : fPtr(nullptr) {} in gr_sp() function
38 constexpr gr_sp(std::nullptr_t) : fPtr(nullptr) {} in gr_sp() function
44 gr_sp(const gr_sp<T, Ref, Unref>& that) : fPtr(SafeRef(that.get())) {} in gr_sp() function
47 gr_sp(const gr_sp<U, Ref, Unref>& that) : fPtr(SafeRef(that.get())) {} in gr_sp() function
49 gr_sp(const sk_sp<T>& that) : fPtr(SafeRef(that.get())) {} in gr_sp() function
57 gr_sp(gr_sp<T, Ref, Unref>&& that) : fPtr(that.release()) {} in gr_sp() function
63 gr_sp(sk_sp<T>&& that) : fPtr(SafeRef(that.get())) {} in gr_sp() function
69 explicit gr_sp(T* obj) : fPtr(obj) {} in gr_sp() function