2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2008 The Android Open Source Project
|
2008-12-17 15:59:43 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
#ifndef SkMallocPixelRef_DEFINED
|
|
|
|
#define SkMallocPixelRef_DEFINED
|
|
|
|
|
|
|
|
#include "SkPixelRef.h"
|
|
|
|
|
|
|
|
/** We explicitly use the same allocator for our pixels that SkMask does,
|
|
|
|
so that we can freely assign memory allocated by one class to the other.
|
|
|
|
*/
|
|
|
|
class SkMallocPixelRef : public SkPixelRef {
|
|
|
|
public:
|
2013-12-13 19:45:58 +00:00
|
|
|
/**
|
|
|
|
* Return a new SkMallocPixelRef with the provided pixel storage, rowBytes,
|
|
|
|
* and optional colortable. The caller is responsible for managing the
|
|
|
|
* lifetime of the pixel storage buffer, as this pixelref will not try
|
|
|
|
* to delete it.
|
|
|
|
*
|
|
|
|
* The pixelref will ref() the colortable (if not NULL).
|
|
|
|
*
|
|
|
|
* Returns NULL on failure.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
2013-12-13 19:45:58 +00:00
|
|
|
static SkMallocPixelRef* NewDirect(const SkImageInfo&, void* addr,
|
|
|
|
size_t rowBytes, SkColorTable*);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2013-12-13 19:45:58 +00:00
|
|
|
/**
|
|
|
|
* Return a new SkMallocPixelRef, automatically allocating storage for the
|
2014-01-06 17:08:27 +00:00
|
|
|
* pixels. If rowBytes are 0, an optimal value will be chosen automatically.
|
|
|
|
* If rowBytes is > 0, then it will be respected, or NULL will be returned
|
|
|
|
* if rowBytes is invalid for the specified info.
|
2013-12-13 19:45:58 +00:00
|
|
|
*
|
|
|
|
* This pixelref will ref() the specified colortable (if not NULL).
|
|
|
|
*
|
|
|
|
* Returns NULL on failure.
|
|
|
|
*/
|
|
|
|
static SkMallocPixelRef* NewAllocate(const SkImageInfo& info,
|
|
|
|
size_t rowBytes, SkColorTable*);
|
2013-12-16 07:01:40 +00:00
|
|
|
|
2014-01-02 17:29:28 +00:00
|
|
|
/**
|
|
|
|
* Return a new SkMallocPixelRef with the provided pixel storage,
|
|
|
|
* rowBytes, and optional colortable. On destruction, ReleaseProc
|
|
|
|
* will be called.
|
|
|
|
*
|
|
|
|
* This pixelref will ref() the specified colortable (if not NULL).
|
|
|
|
*
|
|
|
|
* Returns NULL on failure.
|
|
|
|
*/
|
|
|
|
typedef void (*ReleaseProc)(void* addr, void* context);
|
|
|
|
static SkMallocPixelRef* NewWithProc(const SkImageInfo& info,
|
|
|
|
size_t rowBytes, SkColorTable*,
|
|
|
|
void* addr, ReleaseProc proc,
|
|
|
|
void* context);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a new SkMallocPixelRef that will use the provided
|
|
|
|
* SkData, rowBytes, and optional colortable as pixel storage.
|
|
|
|
* The SkData will be ref()ed and on destruction of the PielRef,
|
|
|
|
* the SkData will be unref()ed.
|
|
|
|
*
|
|
|
|
* @param offset (in bytes) into the provided SkData that the
|
|
|
|
* first pixel is located at.
|
|
|
|
*
|
|
|
|
* This pixelref will ref() the specified colortable (if not NULL).
|
|
|
|
*
|
|
|
|
* Returns NULL on failure.
|
|
|
|
*/
|
|
|
|
static SkMallocPixelRef* NewWithData(const SkImageInfo& info,
|
|
|
|
size_t rowBytes,
|
|
|
|
SkColorTable* ctable,
|
|
|
|
SkData* data,
|
|
|
|
size_t offset = 0);
|
|
|
|
|
2010-12-20 18:26:13 +00:00
|
|
|
void* getAddr() const { return fStorage; }
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2012-03-28 20:47:01 +00:00
|
|
|
SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkMallocPixelRef)
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
protected:
|
2014-01-02 17:29:28 +00:00
|
|
|
// The ownPixels version of this constructor is deprecated.
|
2013-12-13 19:45:58 +00:00
|
|
|
SkMallocPixelRef(const SkImageInfo&, void* addr, size_t rb, SkColorTable*,
|
|
|
|
bool ownPixels);
|
2013-12-13 14:18:14 +00:00
|
|
|
SkMallocPixelRef(SkFlattenableReadBuffer& buffer);
|
2013-12-13 19:45:58 +00:00
|
|
|
virtual ~SkMallocPixelRef();
|
2013-12-13 15:24:37 +00:00
|
|
|
|
2014-01-06 17:08:27 +00:00
|
|
|
virtual bool onNewLockPixels(LockRec*) SK_OVERRIDE;
|
2013-12-13 19:45:58 +00:00
|
|
|
virtual void onUnlockPixels() SK_OVERRIDE;
|
|
|
|
virtual void flatten(SkFlattenableWriteBuffer&) const SK_OVERRIDE;
|
|
|
|
virtual size_t getAllocatedSizeInBytes() const SK_OVERRIDE;
|
2013-12-04 17:06:49 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
private:
|
2013-12-13 15:24:37 +00:00
|
|
|
void* fStorage;
|
|
|
|
SkColorTable* fCTable;
|
2013-12-13 19:45:58 +00:00
|
|
|
size_t fRB;
|
2014-01-02 17:29:28 +00:00
|
|
|
ReleaseProc fReleaseProc;
|
|
|
|
void* fReleaseProcContext;
|
|
|
|
|
|
|
|
SkMallocPixelRef(const SkImageInfo&, void* addr, size_t rb, SkColorTable*,
|
|
|
|
ReleaseProc proc, void* context);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
typedef SkPixelRef INHERITED;
|
|
|
|
};
|
|
|
|
|
2010-12-20 18:26:13 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
#endif
|