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

  /external/skia/src/core/
SkMallocPixelRef.cpp 8 #include "SkMallocPixelRef.h"
28 sk_sp<SkPixelRef> SkMallocPixelRef::MakeDirect(const SkImageInfo& info,
34 return sk_sp<SkPixelRef>(new SkMallocPixelRef(info, addr, rowBytes, nullptr, nullptr));
38 sk_sp<SkPixelRef> SkMallocPixelRef::MakeUsing(void*(*alloc)(size_t),
73 return sk_sp<SkPixelRef>(new SkMallocPixelRef(info, addr, rowBytes,
77 sk_sp<SkPixelRef> SkMallocPixelRef::MakeAllocate(const SkImageInfo& info,
83 sk_sp<SkPixelRef> SkMallocPixelRef::MakeZeroed(const SkImageInfo& info,
92 sk_sp<SkPixelRef> SkMallocPixelRef::MakeWithProc(const SkImageInfo& info,
95 SkMallocPixelRef::ReleaseProc proc,
103 return sk_sp<SkPixelRef>(new SkMallocPixelRef(info, addr, rowBytes, proc, context))
    [all...]
  /external/skia/include/core/
SkMallocPixelRef.h 19 class SK_API SkMallocPixelRef : public SkPixelRef {
22 * Return a new SkMallocPixelRef with the provided pixel storage, rowBytes,
32 * Return a new SkMallocPixelRef, automatically allocating storage for the
49 * Return a new SkMallocPixelRef with the provided pixel storage,
55 * SkMallocPixelRef must not live beyond its pixels (e.g. by copying
65 * Return a new SkMallocPixelRef that will use the provided
100 ~SkMallocPixelRef() override;
111 SkMallocPixelRef(const SkImageInfo&, void* addr, size_t rb, ReleaseProc proc, void* context);

Completed in 564 milliseconds