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

  /external/skia/include/core/
SkMallocPixelRef.h 16 class SK_API SkMallocPixelRef : public SkPixelRef {
19 * Return a new SkMallocPixelRef with the provided pixel storage, rowBytes,
29 * Return a new SkMallocPixelRef, automatically allocating storage for the
46 * Return a new SkMallocPixelRef with the provided pixel storage,
52 * SkMallocPixelRef must not live beyond its pixels (e.g. by copying
62 * Return a new SkMallocPixelRef that will use the provided
72 ~SkMallocPixelRef() override;
83 SkMallocPixelRef(const SkImageInfo&, void* addr, size_t rb, ReleaseProc proc, void* context);
  /external/skqp/include/core/
SkMallocPixelRef.h 16 class SK_API SkMallocPixelRef : public SkPixelRef {
19 * Return a new SkMallocPixelRef with the provided pixel storage, rowBytes,
29 * Return a new SkMallocPixelRef, automatically allocating storage for the
46 * Return a new SkMallocPixelRef with the provided pixel storage,
52 * SkMallocPixelRef must not live beyond its pixels (e.g. by copying
62 * Return a new SkMallocPixelRef that will use the provided
72 ~SkMallocPixelRef() override;
83 SkMallocPixelRef(const SkImageInfo&, void* addr, size_t rb, ReleaseProc proc, void* context);
  /external/skia/src/core/
SkMallocPixelRef.cpp 8 #include "SkMallocPixelRef.h"
47 sk_sp<SkPixelRef> SkMallocPixelRef::MakeDirect(const SkImageInfo& info,
53 return sk_sp<SkPixelRef>(new SkMallocPixelRef(info, addr, rowBytes, nullptr, nullptr));
57 sk_sp<SkPixelRef> SkMallocPixelRef::MakeUsing(void*(*allocProc)(size_t),
81 return sk_sp<SkPixelRef>(new SkMallocPixelRef(info, addr, rowBytes,
85 sk_sp<SkPixelRef> SkMallocPixelRef::MakeAllocate(const SkImageInfo& info, size_t rowBytes) {
89 sk_sp<SkPixelRef> SkMallocPixelRef::MakeZeroed(const SkImageInfo& info,
98 sk_sp<SkPixelRef> SkMallocPixelRef::MakeWithProc(const SkImageInfo& info,
101 SkMallocPixelRef::ReleaseProc proc,
109 return sk_sp<SkPixelRef>(new SkMallocPixelRef(info, addr, rowBytes, proc, context))
    [all...]
  /external/skqp/src/core/
SkMallocPixelRef.cpp 8 #include "SkMallocPixelRef.h"
47 sk_sp<SkPixelRef> SkMallocPixelRef::MakeDirect(const SkImageInfo& info,
53 return sk_sp<SkPixelRef>(new SkMallocPixelRef(info, addr, rowBytes, nullptr, nullptr));
57 sk_sp<SkPixelRef> SkMallocPixelRef::MakeUsing(void*(*allocProc)(size_t),
81 return sk_sp<SkPixelRef>(new SkMallocPixelRef(info, addr, rowBytes,
85 sk_sp<SkPixelRef> SkMallocPixelRef::MakeAllocate(const SkImageInfo& info, size_t rowBytes) {
89 sk_sp<SkPixelRef> SkMallocPixelRef::MakeZeroed(const SkImageInfo& info,
98 sk_sp<SkPixelRef> SkMallocPixelRef::MakeWithProc(const SkImageInfo& info,
101 SkMallocPixelRef::ReleaseProc proc,
109 return sk_sp<SkPixelRef>(new SkMallocPixelRef(info, addr, rowBytes, proc, context))
    [all...]

Completed in 73 milliseconds