OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fBM
(Results
1 - 6
of
6
) sorted by null
/external/skia/gm/
giantbitmap.cpp
22
SkBitmap*
fBM
;
28
if (NULL ==
fBM
) {
29
fBM
= new SkBitmap;
30
fBM
->setConfig(SkBitmap::kARGB_8888_Config, W, H);
31
fBM
->allocPixels();
32
fBM
->eraseColor(SK_ColorWHITE);
38
SkCanvas canvas(*
fBM
);
60
return *
fBM
;
64
GiantBitmapGM(SkShader::TileMode mode, bool doFilter, bool doRotate) :
fBM
(NULL) {
71
SkDELETE(
fBM
);
[
all
...]
ninepatchstretch.cpp
62
SkBitmap
fBM
;
/external/skia/src/gpu/
GrSWMaskHelper.cpp
101
fBM
.setConfig(SkBitmap::kA8_Config, bounds.fRight, bounds.fBottom);
102
if (!
fBM
.allocPixels()) {
105
sk_bzero(
fBM
.getPixels(),
fBM
.getSafeSize());
112
fDraw.fBitmap = &
fBM
;
122
desc.fWidth =
fBM
.width();
123
desc.fHeight =
fBM
.height();
134
SkAutoLockPixels alp(
fBM
);
136
// The destination texture is almost always larger than "
fBM
". Clear
149
texture->writePixels(0, 0,
fBM
.width(), fBM.height()
[
all
...]
GrSWMaskHelper.h
71
fBM
.eraseColor(SkColorSetARGB(alpha, alpha, alpha, alpha));
101
SkBitmap
fBM
;
/external/skia/legacy/src/ports/
SkFontHost_win.cpp
287
fBM
= 0;
298
if (
fBM
) {
299
DeleteObject(
fBM
);
313
HBITMAP
fBM
;
316
void* fBits; // points into
fBM
343
if (
fBM
&& (fIsBW != isBW || fWidth < glyph.fWidth || fHeight < glyph.fHeight)) {
344
DeleteObject(
fBM
);
345
fBM
= 0;
364
if (0 ==
fBM
) {
382
fBM
= CreateDIBSection(fDC, &info, DIB_RGB_COLORS, &fBits, 0, 0)
[
all
...]
/external/skia/src/ports/
SkFontHost_win.cpp
426
fBM
= 0;
436
if (
fBM
) {
437
DeleteObject(
fBM
);
450
HBITMAP
fBM
;
453
void* fBits; // points into
fBM
482
if (
fBM
&& (fIsBW != isBW || fWidth < glyph.fWidth || fHeight < glyph.fHeight)) {
483
DeleteObject(
fBM
);
484
fBM
= 0;
493
if (0 ==
fBM
) {
511
fBM
= CreateDIBSection(fDC, &info, DIB_RGB_COLORS, &fBits, 0, 0)
[
all
...]
Completed in 123 milliseconds