OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dstPI
(Results
1 - 3
of
3
) sorted by null
/external/skia/src/gpu/
GrContext.cpp
226
SkDstPixelInfo
dstPI
;
227
dstPI
.fColorType = srcPI.fColorType;
228
dstPI
.fAlphaType = kPremul_SkAlphaType;
229
dstPI
.fPixels = outPixels;
230
dstPI
.fRowBytes = outRowBytes;
232
return srcPI.convertPixelsTo(&
dstPI
, width, height);
481
SkDstPixelInfo
dstPI
;
482
if (!GrPixelConfig2ColorAndProfileType(dstConfig, &
dstPI
.fColorType, nullptr)) {
485
dstPI
.fAlphaType = kUnpremul_SkAlphaType;
486
dstPI
.fPixels = buffer
[
all
...]
SkGr.cpp
135
SkDstPixelInfo
dstPI
;
136
dstPI
.fColorType = kRGBA_8888_SkColorType;
137
dstPI
.fAlphaType = kPremul_SkAlphaType;
138
dstPI
.fPixels = buffer;
139
dstPI
.fRowBytes = count * sizeof(SkPMColor);
147
srcPI.convertPixelsTo(&
dstPI
, count, 1);
/external/skia/src/core/
SkConfig8888.cpp
193
SkDstPixelInfo
dstPI
;
194
dstPI
.fColorType = dstInfo.colorType();
195
dstPI
.fAlphaType = dstInfo.alphaType();
196
dstPI
.fPixels = dstPixels;
197
dstPI
.fRowBytes = dstRB;
205
return srcPI.convertPixelsTo(&
dstPI
, width, height);
Completed in 400 milliseconds