blob: f8e8a0a18284b1e44b967d023546aac5f103eec0 [file] [log] [blame]
Tom Hudson8dfaa492014-12-09 15:03:44 -05001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef PAINT_UTILS_H
17#define PAINT_UTILS_H
18
Chris Craikbf6f0f22015-10-01 12:36:07 -070019#include <utils/Blur.h>
20
Chris Craik03188872015-02-02 18:39:33 -080021#include <SkColorFilter.h>
Tom Hudsonca4f0b52015-10-05 08:51:49 -040022#include <SkDrawLooper.h>
Mike Reed8cafcc62018-05-03 11:32:46 -040023#include <SkPaint.h>
Chris Craikb565df12015-10-05 13:00:52 -070024#include <SkShader.h>
Chris Craik03188872015-02-02 18:39:33 -080025
Tom Hudson8dfaa492014-12-09 15:03:44 -050026namespace android {
27namespace uirenderer {
28
Chris Craikbf6f0f22015-10-01 12:36:07 -070029/**
30 * Utility methods for accessing data within SkPaint, and providing defaults
31 * with optional SkPaint pointers.
32 */
Tom Hudson8dfaa492014-12-09 15:03:44 -050033class PaintUtils {
34public:
Chris Craik0519c8102015-02-11 13:17:06 -080035 static inline GLenum getFilter(const SkPaint* paint) {
Mike Reed2a1ce8a2015-03-16 11:16:09 -040036 if (!paint || paint->getFilterQuality() != kNone_SkFilterQuality) {
Chris Craik0519c8102015-02-11 13:17:06 -080037 return GL_LINEAR;
38 }
39 return GL_NEAREST;
40 }
41
Chris Craik80d2ade2016-03-28 12:54:07 -070042 static bool isOpaquePaint(const SkPaint* paint) {
John Reck1bcacfd2017-11-03 10:12:19 -070043 if (!paint) return true; // default (paintless) behavior is SrcOver, black
Chris Craik80d2ade2016-03-28 12:54:07 -070044
John Reck1bcacfd2017-11-03 10:12:19 -070045 if (paint->getAlpha() != 0xFF || PaintUtils::isBlendedShader(paint->getShader()) ||
46 PaintUtils::isBlendedColorFilter(paint->getColorFilter())) {
Chris Craik80d2ade2016-03-28 12:54:07 -070047 return false;
48 }
49
50 // Only let simple srcOver / src blending modes declare opaque, since behavior is clear.
Mike Reed260ab722016-10-07 15:59:20 -040051 SkBlendMode mode = paint->getBlendMode();
John Reck1bcacfd2017-11-03 10:12:19 -070052 return mode == SkBlendMode::kSrcOver || mode == SkBlendMode::kSrc;
Chris Craik80d2ade2016-03-28 12:54:07 -070053 }
54
Chris Craik117bdbc2015-02-05 10:12:38 -080055 static bool isBlendedShader(const SkShader* shader) {
56 if (shader == nullptr) {
57 return false;
58 }
59 return !shader->isOpaque();
60 }
61
Tom Hudson8dfaa492014-12-09 15:03:44 -050062 static bool isBlendedColorFilter(const SkColorFilter* filter) {
Chris Craikd41c4d82015-01-05 15:51:13 -080063 if (filter == nullptr) {
Tom Hudson8dfaa492014-12-09 15:03:44 -050064 return false;
65 }
66 return (filter->getFlags() & SkColorFilter::kAlphaUnchanged_Flag) == 0;
67 }
68
Chris Craikbf6f0f22015-10-01 12:36:07 -070069 struct TextShadow {
70 SkScalar radius;
71 float dx;
72 float dy;
73 SkColor color;
74 };
75
76 static inline bool getTextShadow(const SkPaint* paint, TextShadow* textShadow) {
77 SkDrawLooper::BlurShadowRec blur;
78 if (paint && paint->getLooper() && paint->getLooper()->asABlurShadow(&blur)) {
79 if (textShadow) {
80 textShadow->radius = Blur::convertSigmaToRadius(blur.fSigma);
81 textShadow->dx = blur.fOffset.fX;
82 textShadow->dy = blur.fOffset.fY;
83 textShadow->color = blur.fColor;
84 }
85 return true;
86 }
87 return false;
88 }
89
John Reck1bcacfd2017-11-03 10:12:19 -070090 static inline bool hasTextShadow(const SkPaint* paint) { return getTextShadow(paint, nullptr); }
Chris Craikbf6f0f22015-10-01 12:36:07 -070091
Mike Reed260ab722016-10-07 15:59:20 -040092 static inline SkBlendMode getBlendModeDirect(const SkPaint* paint) {
93 return paint ? paint->getBlendMode() : SkBlendMode::kSrcOver;
Chris Craikbf6f0f22015-10-01 12:36:07 -070094 }
95
96 static inline int getAlphaDirect(const SkPaint* paint) {
97 return paint ? paint->getAlpha() : 255;
98 }
99
John Reck1bcacfd2017-11-03 10:12:19 -0700100}; // class PaintUtils
Tom Hudson8dfaa492014-12-09 15:03:44 -0500101
102} /* namespace uirenderer */
103} /* namespace android */
104
105#endif /* PAINT_UTILS_H */