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
|
|
|
|
* pixels.
|
|
|
|
*
|
|
|
|
* If rowBytes is 0, an optimal value will be chosen automatically.
|
|
|
|
* If rowBytes is > 0, then it will be used, unless it is invald for the
|
|
|
|
* specified info, in which case NULL will be returned (failure).
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
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:
|
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
|
|
|
|
2013-12-13 19:45:58 +00:00
|
|
|
virtual void* onLockPixels(SkColorTable**) SK_OVERRIDE;
|
|
|
|
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;
|
|
|
|
const bool fOwnPixels;
|
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
|