OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SkBitmapHeap
(Results
1 - 8
of
8
) sorted by null
/external/skia/src/core/
SkBitmapHeap.cpp
9
#include "
SkBitmapHeap
.h"
44
bool
SkBitmapHeap
::LookupEntry::Less(const
SkBitmapHeap
::LookupEntry& a,
45
const
SkBitmapHeap
::LookupEntry& b) {
66
SkBitmapHeap
::
SkBitmapHeap
(int32_t preferredSize, int32_t ownerCount)
77
SkBitmapHeap
::
SkBitmapHeap
(ExternalStorage* storage, int32_t preferredSize)
89
SkBitmapHeap
::~
SkBitmapHeap
() {
[
all
...]
SkBitmapHeap.h
19
* SkBitmapHeapEntry provides users of
SkBitmapHeap
(using internal storage) with a means to...
49
friend class
SkBitmapHeap
;
69
class
SkBitmapHeap
: public SkBitmapHeapReader {
97
SkBitmapHeap
(int32_t preferredSize = UNLIMITED_SIZE, int32_t ownerCount = IGNORE_OWNERS);
112
SkBitmapHeap
(ExternalStorage* externalStorage, int32_t heapSize = UNLIMITED_SIZE);
114
virtual ~
SkBitmapHeap
();
197
* existing SkBitmap is inserted into the
SkBitmapHeap
, its corresponding SkBitmapHeapEntry will
199
* call to releaseRef. Only meaningful if this
SkBitmapHeap
was created with an owner count not
SkPictureFlat.cpp
76
void SkFlatController::setBitmapHeap(
SkBitmapHeap
* heap) {
SkPictureFlat.h
12
#include "
SkBitmapHeap
.h"
215
SkBitmapHeap
* getBitmapHeap() { return fBitmapHeap; }
244
* Set an
SkBitmapHeap
to be used to store/read SkBitmaps. Ref counted.
246
void setBitmapHeap(
SkBitmapHeap
*);
269
SkBitmapHeap
* fBitmapHeap;
309
SkBitmapHeap
* bitmapHeap = nullptr,
SkWriteBuffer.cpp
11
#include "
SkBitmapHeap
.h"
160
// 1. If there is an
SkBitmapHeap
, store it in the heap. The client can avoid serializing the
169
// Write a bool: true if the
SkBitmapHeap
is to be used, in which case the reader must use an
262
void SkWriteBuffer::setBitmapHeap(
SkBitmapHeap
* bitmapHeap) {
/external/skia/include/core/
SkWriteBuffer.h
20
class
SkBitmapHeap
;
90
* Set an
SkBitmapHeap
to store bitmaps rather than flattening.
93
* setting an
SkBitmapHeap
will set the SkPixelSerializer to NULL in release
96
void setBitmapHeap(
SkBitmapHeap
*);
106
* Incompatible with the
SkBitmapHeap
. If an encoder is set fBitmapHeap will
120
SkBitmapHeap
* fBitmapHeap;
/external/skia/tests/
BitmapHeapTest.cpp
9
#include "
SkBitmapHeap
.h"
26
void setBitmapStorage(
SkBitmapHeap
* h) { this->setBitmapHeap(h); }
58
SkBitmapHeap
heap(1, 1);
/external/skia/
Android.mk
107
src/core/
SkBitmapHeap
.cpp \
Completed in 560 milliseconds