HomeSort by relevance Sort by last modified time
    Searched refs:fAlphaType (Results 1 - 24 of 24) sorted by null

  /external/skia/bench/
CodecBench.h 35 const SkAlphaType fAlphaType;
WritePixelsBench.cpp 17 , fAlphaType(at)
58 SkImageInfo info = SkImageInfo::Make(bmp.width(), bmp.height(), fColorType, fAlphaType);
67 SkAlphaType fAlphaType;
RepeatTileBench.cpp 36 const SkAlphaType fAlphaType;
41 RepeatTileBench(SkColorType ct, SkAlphaType at = kPremul_SkAlphaType) : fAlphaType(at) {
57 fBitmap.eraseColor(kOpaque_SkAlphaType == fAlphaType ? SK_ColorWHITE : 0);
CodecBench.cpp 21 , fAlphaType(alphaType)
46 .makeAlphaType(fAlphaType)
BitmapBench.cpp 28 const SkAlphaType fAlphaType;
42 , fAlphaType(at)
52 kOpaque_SkAlphaType == fAlphaType ? "" : "_A");
69 bm.allocPixels(SkImageInfo::Make(W, H, fColorType, fAlphaType));
70 bm.eraseColor(kOpaque_SkAlphaType == fAlphaType ? SK_ColorBLACK : 0);
  /external/skia/include/core/
SkImageInfo.h 185 , fAlphaType(kUnknown_SkAlphaType)
232 SkAlphaType alphaType() const { return fAlphaType; }
239 return SkAlphaTypeIsOpaque(fAlphaType);
254 return Make(newWidth, newHeight, fColorType, fAlphaType, fColorSpace);
262 return Make(fWidth, fHeight, newColorType, fAlphaType, fColorSpace);
266 return Make(fWidth, fHeight, fColorType, fAlphaType, std::move(cs));
293 fColorType == other.fColorType && fAlphaType == other.fAlphaType &&
328 fAlphaType = kUnknown_SkAlphaType;
338 SkAlphaType fAlphaType;
    [all...]
  /external/skia/src/gpu/
GrTextureAdjuster.h 44 SkAlphaType alphaType() const override { return fAlphaType; }
59 SkAlphaType fAlphaType;
GrTextureAdjuster.cpp 23 , fAlphaType(alphaType)
  /external/skia/src/image/
SkImage_Gpu.h 31 SkAlphaType onAlphaType() const override { return fAlphaType; }
68 const SkAlphaType fAlphaType;
SkImage_Gpu.cpp 46 , fAlphaType(at)
63 return SkImageInfo::Make(fProxy->width(), fProxy->height(), ct, fAlphaType, fColorSpace);
201 if (kUnpremul_SkAlphaType == rec.fInfo.alphaType() && kPremul_SkAlphaType == fAlphaType) {
225 if (kPremul_SkAlphaType == rec.fInfo.alphaType() && kUnpremul_SkAlphaType == fAlphaType) {
252 fAlphaType, sContext->asTextureProxyRef(),
564 SkAlphaType fAlphaType;
    [all...]
  /external/skia/src/core/
SkImageInfo.cpp 95 fAlphaType = (SkAlphaType)((packed >> 8) & kAlphaTypeMask);
96 buffer.validate(alpha_type_is_valid(fAlphaType) && color_type_is_valid(fColorType));
106 SkASSERT(0 == (fAlphaType & ~kAlphaTypeMask));
108 uint32_t packed = (fAlphaType << 8) | live_to_stored(fColorType);
SkSpecialImage.cpp 355 , fAlphaType(at)
366 SkAlphaType alphaType() const override { return fAlphaType; }
381 this->uniqueID(), fAlphaType,
450 fAlphaType);
463 return wrap_proxy_in_image(fContext, fTextureProxy, fAlphaType, fColorSpace);
475 return wrap_proxy_in_image(fContext, std::move(subsetProxy), fAlphaType, fColorSpace);
480 return wrap_proxy_in_image(fContext, fTextureProxy, fAlphaType, fColorSpace);
496 const SkAlphaType fAlphaType;
SkBitmap.cpp 835 SkASSERT(SkAlphaTypeIsValid(fAlphaType));
  /external/skia/tools/flags/
SkCommonFlagsConfig.h 72 SkAlphaType getAlphaType() const { return fAlphaType; }
81 SkAlphaType fAlphaType;
SkCommonFlagsConfig.cpp 210 , fAlphaType(alphaType)
  /external/skia/tests/
ReadPixelsTest.cpp 288 SkAlphaType fAlphaType;
353 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
376 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
419 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
428 if (gReadPixelsConfigs[c].fAlphaType == kUnpremul_SkAlphaType) {
436 gReadPixelsConfigs[c].fColorType, gReadPixelsConfigs[c].fAlphaType);
ImageGeneratorTest.cpp 86 SkAlphaType fAlphaType;
107 SkImageInfo info = SkImageInfo::Make(100, 100, rec.fColorType, rec.fAlphaType, colorspace);
CodecAnimTest.cpp 285 auto alpha = frameInfo.fAlphaType;
319 decodeInfo = info.makeAlphaType(frameInfos[index].fAlphaType);
WritePixelsTest.cpp 357 SkAlphaType fAlphaType;
369 const SkAlphaType at = gSrcConfigs[c].fAlphaType;
  /external/skia/include/codec/
SkCodec.h 625 SkAlphaType fAlphaType;
    [all...]
  /external/skia/dm/
DMSrcSink.h 326 SkAlphaType fAlphaType;
DMSrcSink.cpp     [all...]
  /external/skia/src/codec/
SkGifCodec.cpp 146 frameInfo->fAlphaType = frameContext->hasAlpha() ? kUnpremul_SkAlphaType
SkWebpCodec.cpp 308 frameInfo->fAlphaType = alpha_type(frame->hasAlpha());

Completed in 612 milliseconds