HomeSort by relevance Sort by last modified time
    Searched refs:isOpaque (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /external/skia/tests/
ShaderOpacityTest.cpp 24 REPORTER_ASSERT(reporter, !shader->isOpaque());
33 REPORTER_ASSERT(reporter, !shader->isOpaque());
40 REPORTER_ASSERT(reporter, shader->isOpaque());
47 REPORTER_ASSERT(reporter, !shader->isOpaque());
64 REPORTER_ASSERT(reporter, grad->isOpaque());
71 REPORTER_ASSERT(reporter, !grad->isOpaque());
78 REPORTER_ASSERT(reporter, !grad->isOpaque());
85 REPORTER_ASSERT(reporter, !grad->isOpaque());
90 REPORTER_ASSERT(reporter, !colorShader1.isOpaque());
92 REPORTER_ASSERT(reporter, colorShader2.isOpaque());
    [all...]
  /external/skqp/tests/
ShaderOpacityTest.cpp 24 REPORTER_ASSERT(reporter, !shader->isOpaque());
33 REPORTER_ASSERT(reporter, !shader->isOpaque());
40 REPORTER_ASSERT(reporter, shader->isOpaque());
47 REPORTER_ASSERT(reporter, !shader->isOpaque());
64 REPORTER_ASSERT(reporter, grad->isOpaque());
71 REPORTER_ASSERT(reporter, !grad->isOpaque());
78 REPORTER_ASSERT(reporter, !grad->isOpaque());
85 REPORTER_ASSERT(reporter, !grad->isOpaque());
90 REPORTER_ASSERT(reporter, !colorShader1.isOpaque());
92 REPORTER_ASSERT(reporter, colorShader2.isOpaque());
    [all...]
  /external/skia/src/gpu/
GrProcessorAnalysis.cpp 17 fIsOpaque = input.isOpaque();
30 fIsOpaque = fLastKnownOutputColor.isOpaque();
GrProcessorAnalysis.h 31 if (color.isOpaque()) {
44 bool isOpaque() const { return SkToBool(kIsOpaque_Flag & fFlags); }
101 bool isOpaque() const { return fIsOpaque; }
  /external/skqp/src/gpu/
GrProcessorAnalysis.cpp 17 fIsOpaque = input.isOpaque();
30 fIsOpaque = fLastKnownOutputColor.isOpaque();
GrProcessorAnalysis.h 31 if (color.isOpaque()) {
44 bool isOpaque() const { return SkToBool(kIsOpaque_Flag & fFlags); }
101 bool isOpaque() const { return fIsOpaque; }
  /external/skia/src/shaders/
SkColorShader.h 27 bool isOpaque() const override;
59 bool isOpaque() const override { return fColor.isOpaque(); }
SkImageShader.h 24 bool isOpaque() const override;
  /external/skqp/src/shaders/
SkColorShader.h 27 bool isOpaque() const override;
59 bool isOpaque() const override { return fColor.isOpaque(); }
  /external/skia/src/core/
SkBlitter_RGB565.cpp 93 bool isOpaque = SkToBool(shaderContext->getFlags() & SkShaderBase::kOpaqueAlpha_Flag);
95 if (paint.getBlendMode() == SkBlendMode::kSrc || isOpaque) {
99 fBlend = isOpaque ? D16_S32X_src : D16_S32A_srcover;
100 fBlendCoverage = isOpaque ? D16_S32X_src_coverage : D16_S32A_srcover_coverage;
SkPaintPriv.cpp 31 (!paint->getShader() || paint->getShader()->isOpaque()))
43 return SkXfermode::IsOpaque(paint->getBlendMode(), opacityType);
  /external/skqp/src/core/
SkBlitter_RGB565.cpp 93 bool isOpaque = SkToBool(shaderContext->getFlags() & SkShaderBase::kOpaqueAlpha_Flag);
95 if (paint.getBlendMode() == SkBlendMode::kSrc || isOpaque) {
99 fBlend = isOpaque ? D16_S32X_src : D16_S32A_srcover;
100 fBlendCoverage = isOpaque ? D16_S32X_src_coverage : D16_S32A_srcover_coverage;
SkPaintPriv.cpp 31 (!paint->getShader() || paint->getShader()->isOpaque()))
43 return SkXfermode::IsOpaque(paint->getBlendMode(), opacityType);
  /external/skia/src/pdf/
SkPDFBitmap.cpp 139 bool isOpaque,
142 if (!isOpaque) {
191 if (!isOpaque) {
238 SkAlphaType at = bm.isOpaque() ? kOpaque_SkAlphaType : kUnpremul_SkAlphaType;
262 bool isOpaque = pm.isOpaque() || pm.computeIsOpaque();
263 if (encodingQuality <= 100 && isOpaque) {
269 do_deflated_image(pm, doc, isOpaque, ref);
  /external/skqp/src/pdf/
SkPDFBitmap.cpp 139 bool isOpaque,
142 if (!isOpaque) {
191 if (!isOpaque) {
238 SkAlphaType at = bm.isOpaque() ? kOpaque_SkAlphaType : kUnpremul_SkAlphaType;
262 bool isOpaque = pm.isOpaque() || pm.computeIsOpaque();
263 if (encodingQuality <= 100 && isOpaque) {
269 do_deflated_image(pm, doc, isOpaque, ref);
  /external/skia/src/images/
SkPngEncoder.cpp 117 pngColorType = srcInfo.isOpaque() ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_RGB_ALPHA;
124 SkASSERT(srcInfo.isOpaque());
132 pngColorType = srcInfo.isOpaque() ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_RGB_ALPHA;
133 fPngBytesPerPixel = srcInfo.isOpaque() ? 3 : 4;
141 SkASSERT(srcInfo.isOpaque());
152 pngColorType = srcInfo.isOpaque() ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_RGB_ALPHA;
153 fPngBytesPerPixel = srcInfo.isOpaque() ? 3 : 4;
161 SkASSERT(srcInfo.isOpaque());
175 pngColorType = srcInfo.isOpaque() ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_RGB_ALPHA;
SkWebpEncoder.cpp 69 if (!info.isOpaque()) {
120 bpp = pixmap.isOpaque() ? 3 : 4;
178 if (pixmap.isOpaque()) {
  /external/skqp/src/images/
SkPngEncoder.cpp 116 pngColorType = srcInfo.isOpaque() ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_RGB_ALPHA;
123 SkASSERT(srcInfo.isOpaque());
131 pngColorType = srcInfo.isOpaque() ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_RGB_ALPHA;
132 fPngBytesPerPixel = srcInfo.isOpaque() ? 3 : 4;
140 SkASSERT(srcInfo.isOpaque());
151 pngColorType = srcInfo.isOpaque() ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_RGB_ALPHA;
152 fPngBytesPerPixel = srcInfo.isOpaque() ? 3 : 4;
160 SkASSERT(srcInfo.isOpaque());
174 pngColorType = srcInfo.isOpaque() ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_RGB_ALPHA;
SkWebpEncoder.cpp 69 if (!info.isOpaque()) {
120 bpp = pixmap.isOpaque() ? 3 : 4;
178 if (pixmap.isOpaque()) {
  /external/skqp/include/core/
SkBitmap.h 309 bool isOpaque() const {
555 pixel memory. If isOpaque is true, sets SkImageInfo to kOpaque_SkAlphaType;
568 @param isOpaque true if pixels do not have transparency
571 bool SK_WARN_UNUSED_RESULT tryAllocN32Pixels(int width, int height, bool isOpaque = false) {
573 isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
578 pixel memory. If isOpaque is true, sets SkImageInfo to kPremul_SkAlphaType;
590 @param isOpaque true if pixels do not have transparency
592 void allocN32Pixels(int width, int height, bool isOpaque = false) {
594 isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
ColorStateListTest.java 123 assertTrue(c.isOpaque());
126 assertFalse(c.isOpaque());
129 assertFalse(c.isOpaque());
  /external/skia/src/codec/
SkBmpStandardCodec.h 38 * @param isOpaque indicates if the bmp itself is opaque (before applying
45 bool isOpaque, bool inIco);
  /external/skia/src/gpu/effects/
GrConstColorProcessor.h 27 if (color.isOpaque()) {
GrOverrideInputFragmentProcessor.h 28 if ((childFlags & kPreservesOpaqueInput_OptimizationFlag) && color.isOpaque()) {
  /external/skqp/src/codec/
SkBmpStandardCodec.h 38 * @param isOpaque indicates if the bmp itself is opaque (before applying
45 bool isOpaque, bool inIco);

Completed in 461 milliseconds

1 2 3 4 5 6 7 8