OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fbitmaps
(Results
1 - 6
of
6
) sorted by null
/external/skia/samplecode/
SampleFilter2.cpp
29
SkBitmap*
fBitmaps
;
35
fBitmaps
= new SkBitmap[fBitmapCount];
38
SkImageDecoder::DecodeFile(gNames[i], &
fBitmaps
[i], kN32_SkColorType,
42
SkImageDecoder::DecodeFile(gNames[i-fBitmapCount/2], &
fBitmaps
[i], kRGB_565_SkColorType,
51
delete[]
fBitmaps
;
69
const SkScalar W = SkIntToScalar(
fBitmaps
[0].width() + 1);
70
const SkScalar H = SkIntToScalar(
fBitmaps
[0].height() + 1);
85
canvas->drawBitmap(
fBitmaps
[i], x, y, &paint);
104
s.appendS32(
fBitmaps
[i].colorType() == kRGB_565_SkColorType ? 16 : 32);
SampleFontCache.cpp
85
SkBitmap
fBitmaps
[N];
95
fBitmaps
[i].allocPixels(SkImageInfo::Make(320, 240,
98
status = pthread_create(&fDThreads[i], nullptr, draw_proc, &
fBitmaps
[i]);
129
canvas->drawBitmap(
fBitmaps
[i], x, y);
130
x += SkIntToScalar(
fBitmaps
[i].width());
/external/skia/src/core/
SkPictureData.h
92
return
fBitmaps
[index];
157
SkTArray<SkBitmap>
fBitmaps
;
SkPictureData.cpp
47
fBitmaps
= record.
fBitmaps
;
122
if (
fBitmaps
.count() > 0 || fImageCount > 0) {
210
if ((n =
fBitmaps
.count()) > 0) {
213
buffer.writeBitmap(
fBitmaps
[i]);
494
fBitmaps
.reset(count);
496
SkBitmap* bm = &
fBitmaps
[i];
SkPictureRecord.cpp
837
for (int i = 0; i <
fBitmaps
.count(); i++) {
838
if (equivalent(
fBitmaps
[i], bitmap)) {
846
fBitmaps
.push_back(bitmap);
852
fBitmaps
.push_back(copy);
854
this->addInt(
fBitmaps
.count()-1); // Remember, 0-based.
[
all
...]
SkPictureRecord.h
227
SkTArray<SkBitmap>
fBitmaps
;
Completed in 997 milliseconds