diff options
Diffstat (limited to 'include')
-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 |