diff options
author | dvonbeck <dvonbeck@google.com> | 2016-07-20 11:20:30 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-07-20 11:20:30 -0700 |
commit | c526da94e4f2dc0c8521099dad2118c5d6b8da4a (patch) | |
tree | cacbe403042f6a407fc3ae052c0110a88942af09 /include/gpu | |
parent | f2944815e5e490c843c5a364fcaae2471526562f (diff) |
SkLS now accepting nullptr for diffuse shader and normal source, now accurately handling alpha
This CL's base is the CL for taking in a diffuse shader into SkLS on the API side: https://codereview.chromium.org/2064153002
BUG=skia:5502,skia:5517
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2132113002
Review-Url: https://codereview.chromium.org/2132113002
Diffstat (limited to 'include/gpu')
-rw-r--r-- | include/gpu/GrFragmentProcessor.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/gpu/GrFragmentProcessor.h b/include/gpu/GrFragmentProcessor.h index b8ebeca303..4b56fbf728 100644 --- a/include/gpu/GrFragmentProcessor.h +++ b/include/gpu/GrFragmentProcessor.h @@ -48,6 +48,12 @@ public: static sk_sp<GrFragmentProcessor> OverrideInput(sk_sp<GrFragmentProcessor>, GrColor); /** + * Returns a fragment processor that premuls the input before calling the passed in fragment + * processor. + */ + static sk_sp<GrFragmentProcessor> PremulInput(sk_sp<GrFragmentProcessor>); + + /** * Returns a fragment processor that runs the passed in array of fragment processors in a * series. The original input is passed to the first, the first's output is passed to the * second, etc. The output of the returned processor is the output of the last processor of the |