/third_party/flutter/skia/include/core/ |
D | SkImageInfo.h | 200 , fAlphaType(kUnknown_SkAlphaType) 367 SkAlphaType alphaType() const { return fAlphaType; } in alphaType() 403 return SkAlphaTypeIsOpaque(fAlphaType); in isOpaque() 436 return Make(newWidth, newHeight, fColorType, fAlphaType, fColorSpace); in makeWH() 465 return Make(this->width(), this->height(), newColorType, fAlphaType, fColorSpace); in makeColorType() 475 return Make(this->width(), this->height(), fColorType, fAlphaType, std::move(cs)); in makeColorSpace() 534 fColorType == other.fColorType && fAlphaType == other.fAlphaType && 597 fAlphaType = kUnknown_SkAlphaType; in reset() 613 desc += split + "\t fAlphaType: " + std::to_string(static_cast<int>(fAlphaType)) + "\n"; 621 SkAlphaType fAlphaType; member [all …]
|
/third_party/skia/src/gpu/ |
D | GrColorInfo.h | 29 fAlphaType == that.fAlphaType && 35 return GrColorInfo(ct, fAlphaType, this->refColorSpace()); in makeColorType() 47 SkAlphaType alphaType() const { return fAlphaType; } in alphaType() 52 return fColorType != GrColorType::kUnknown && fAlphaType != kUnknown_SkAlphaType; in isValid() 59 SkAlphaType fAlphaType = kUnknown_SkAlphaType; variable
|
D | GrColorInfo.cpp | 14 : fColorSpace(std::move(colorSpace)), fColorType(colorType), fAlphaType(alphaType) { in GrColorInfo()
|
/third_party/skia/tools/flags/ |
D | CommonFlagsConfig.h | 81 SkAlphaType getAlphaType() const { return fAlphaType; } in getAlphaType() 96 SkAlphaType fAlphaType; variable 123 , fAlphaType(alphaType) in SkCommandLineConfigGraphite() 130 SkAlphaType getAlphaType() const { return fAlphaType; } in getAlphaType() 136 SkAlphaType fAlphaType; variable
|
/third_party/flutter/skia/src/gpu/ |
D | GrColorSpaceInfo.h | 33 SkAlphaType alphaType() const { return fAlphaType; } in alphaType() 36 return fColorType != GrColorType::kUnknown && fAlphaType != kUnknown_SkAlphaType; in isValid() 43 SkAlphaType fAlphaType = kUnknown_SkAlphaType; variable
|
D | GrColorSpaceInfo.cpp | 14 : fColorSpace(std::move(colorSpace)), fColorType(colorType), fAlphaType(alphaType) {} in GrColorSpaceInfo()
|
/third_party/skia/include/core/ |
D | SkImageInfo.h | 198 : fColorSpace(std::move(cs)), fColorType(ct), fAlphaType(at) {} in SkColorInfo() 209 SkAlphaType alphaType() const { return fAlphaType; } in alphaType() 212 return SkAlphaTypeIsOpaque(fAlphaType) in isOpaque() 220 return fColorType == other.fColorType && fAlphaType == other.fAlphaType && 272 SkAlphaType fAlphaType = kUnknown_SkAlphaType; variable
|
/third_party/skia/bench/ |
D | WritePixelsBench.cpp | 21 , fAlphaType(at) in WritePixelsBench() 38 SkImageInfo info = SkImageInfo::Make(size, fColorType, fAlphaType, fCS); in onDraw() 50 SkAlphaType fAlphaType; member in WritePixelsBench
|
D | RepeatTileBench.cpp | 36 const SkAlphaType fAlphaType; member in RepeatTileBench 41 RepeatTileBench(SkColorType ct, SkAlphaType at = kPremul_SkAlphaType) : fAlphaType(at) { in RepeatTileBench() 58 fBitmap.eraseColor(kOpaque_SkAlphaType == fAlphaType ? SK_ColorWHITE : 0); in onDelayedSetup()
|
D | CodecBench.cpp | 22 , fAlphaType(alphaType) in CodecBench() 44 .makeAlphaType(fAlphaType) in onDelayedSetup()
|
D | CodecBench.h | 35 const SkAlphaType fAlphaType; variable
|
/third_party/flutter/skia/bench/ |
D | WritePixelsBench.cpp | 21 , fAlphaType(at) in WritePixelsBench() 38 SkImageInfo info = SkImageInfo::Make(size.width(), size.height(), fColorType, fAlphaType, in onDraw() 51 SkAlphaType fAlphaType; member in WritePixelsBench
|
D | RepeatTileBench.cpp | 36 const SkAlphaType fAlphaType; member in RepeatTileBench 41 RepeatTileBench(SkColorType ct, SkAlphaType at = kPremul_SkAlphaType) : fAlphaType(at) { in RepeatTileBench() 58 fBitmap.eraseColor(kOpaque_SkAlphaType == fAlphaType ? SK_ColorWHITE : 0); in onDelayedSetup()
|
D | BitmapBench.cpp | 28 const SkAlphaType fAlphaType; member in BitmapBench 42 , fAlphaType(at) in BitmapBench() 53 kOpaque_SkAlphaType == fAlphaType ? "" : "_A"); in onGetName() 70 bm.allocPixels(SkImageInfo::Make(W, H, fColorType, fAlphaType)); in onDelayedSetup() 71 bm.eraseColor(kOpaque_SkAlphaType == fAlphaType ? SK_ColorBLACK : 0); in onDelayedSetup()
|
D | CodecBench.cpp | 22 , fAlphaType(alphaType) in CodecBench() 44 .makeAlphaType(fAlphaType) in onDelayedSetup()
|
D | CodecBench.h | 35 const SkAlphaType fAlphaType; variable
|
/third_party/flutter/skia/src/gpu/effects/ |
D | GrBicubicEffect.cpp | 177 , fAlphaType(alphaType) 188 , fAlphaType(that.fAlphaType) in GrBicubicEffect() 205 return fDomain == s.fDomain && fDirection == s.fDirection && fAlphaType == s.fAlphaType; in onIsEqual()
|
D | GrBicubicEffect.h | 42 SkAlphaType alphaType() const { return fAlphaType; } in alphaType() 132 SkAlphaType fAlphaType; variable
|
/third_party/skia/src/core/ |
D | SkSpecialImage.cpp | 341 , fAlphaType(at) in SkSpecialImage_Gpu() 345 SkAlphaType alphaType() const override { return fAlphaType; } in alphaType() 368 SkColorInfo(this->colorType(), fAlphaType, fColorSpace))); in onDraw() 409 fAlphaType); in onMakeSubset() 418 return wrap_proxy_in_image(fContext, fView, this->colorType(), fAlphaType, in onAsImage() 433 fAlphaType, fColorSpace); in onAsImage() 438 return wrap_proxy_in_image(fContext, fView, this->colorType(), fAlphaType, fColorSpace); in onAsImage() 456 const SkAlphaType fAlphaType; member in SkSpecialImage_Gpu
|
/third_party/flutter/skia/src/core/ |
D | SkSpecialImage.cpp | 382 , fAlphaType(at) in SkSpecialImage_Gpu() 393 SkAlphaType alphaType() const override { return fAlphaType; } in alphaType() 409 fAlphaType, fTextureProxy, fColorSpace)); in onDraw() 476 fAlphaType); in onMakeSubset() 490 return wrap_proxy_in_image(fContext, fTextureProxy, fAlphaType, fColorSpace); in onAsImage() 503 return wrap_proxy_in_image(fContext, std::move(subsetProxy), fAlphaType, fColorSpace); in onAsImage() 508 return wrap_proxy_in_image(fContext, fTextureProxy, fAlphaType, fColorSpace); in onAsImage() 527 const SkAlphaType fAlphaType; member in SkSpecialImage_Gpu
|
/third_party/skia/tests/ |
D | ExtendedSkColorTypeTests.cpp | 51 SkAlphaType fAlphaType; member 79 const SkImageInfo nativeII = SkImageInfo::Make(kSize, kSize, test.fColorType, test.fAlphaType); in raster_tests() 179 const SkImageInfo nativeII = SkImageInfo::Make(kSize, kSize, test.fColorType, test.fAlphaType); in gpu_tests() 221 test.fColorType, test.fAlphaType, nullptr); in gpu_tests()
|
D | ImageGeneratorTest.cpp | 96 SkAlphaType fAlphaType; in DEF_TEST() member 120 SkImageInfo info = SkImageInfo::Make(100, 100, rec.fColorType, rec.fAlphaType, colorspace); in DEF_TEST()
|
/third_party/flutter/skia/tools/flags/ |
D | CommonFlagsConfig.h | 73 SkAlphaType getAlphaType() const { return fAlphaType; } in getAlphaType() 85 SkAlphaType fAlphaType; variable
|
/third_party/flutter/skia/tests/ |
D | ImageGeneratorTest.cpp | 111 SkAlphaType fAlphaType; in DEF_TEST() member 135 SkImageInfo info = SkImageInfo::Make(100, 100, rec.fColorType, rec.fAlphaType, colorspace); in DEF_TEST()
|
D | ReadWriteAlphaTest.cpp | 158 SkAlphaType fAlphaType; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() member 191 context, renderable, X_SIZE, Y_SIZE, info.fColorType, info.fAlphaType, origin, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|