rileya@google.com | 589708b | 2012-07-26 20:04:23 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef SkLinearGradient_DEFINED |
| 9 | #define SkLinearGradient_DEFINED |
| 10 | |
| 11 | #include "SkGradientShaderPriv.h" |
| 12 | |
| 13 | class SkLinearGradient : public SkGradientShaderBase { |
| 14 | public: |
commit-bot@chromium.org | 9c9005a | 2014-04-28 14:55:39 +0000 | [diff] [blame] | 15 | SkLinearGradient(const SkPoint pts[2], const Descriptor&, const SkMatrix* localMatrix); |
rileya@google.com | 589708b | 2012-07-26 20:04:23 +0000 | [diff] [blame] | 16 | |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 17 | virtual size_t contextSize() const SK_OVERRIDE; |
| 18 | |
| 19 | class LinearGradientContext : public SkGradientShaderBase::GradientShaderBaseContext { |
| 20 | public: |
commit-bot@chromium.org | e901b6d | 2014-05-01 19:31:31 +0000 | [diff] [blame] | 21 | LinearGradientContext(const SkLinearGradient&, const ContextRec&); |
commit-bot@chromium.org | 87fcd95 | 2014-04-23 19:10:51 +0000 | [diff] [blame] | 22 | ~LinearGradientContext() {} |
| 23 | |
| 24 | virtual void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVERRIDE; |
| 25 | virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OVERRIDE; |
| 26 | |
| 27 | private: |
| 28 | typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED; |
| 29 | }; |
| 30 | |
rileya@google.com | 589708b | 2012-07-26 20:04:23 +0000 | [diff] [blame] | 31 | virtual BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const SK_OVERRIDE; |
| 32 | virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; |
dandov | 9de5b51 | 2014-06-10 14:38:28 -0700 | [diff] [blame] | 33 | virtual bool asNewEffect(GrContext* context, const SkPaint& paint, const SkMatrix* localMatrix, |
bsalomon | 83d081a | 2014-07-08 09:56:10 -0700 | [diff] [blame^] | 34 | GrColor* paintColor, GrEffect** effect) const SK_OVERRIDE; |
rileya@google.com | 589708b | 2012-07-26 20:04:23 +0000 | [diff] [blame] | 35 | |
commit-bot@chromium.org | 0f10f7b | 2014-03-13 18:02:17 +0000 | [diff] [blame] | 36 | SK_TO_STRING_OVERRIDE() |
rileya@google.com | 589708b | 2012-07-26 20:04:23 +0000 | [diff] [blame] | 37 | SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient) |
| 38 | |
| 39 | protected: |
commit-bot@chromium.org | 8b0e8ac | 2014-01-30 18:58:24 +0000 | [diff] [blame] | 40 | SkLinearGradient(SkReadBuffer& buffer); |
| 41 | virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; |
commit-bot@chromium.org | ce56d96 | 2014-05-05 18:39:18 +0000 | [diff] [blame] | 42 | virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_OVERRIDE; |
rileya@google.com | 589708b | 2012-07-26 20:04:23 +0000 | [diff] [blame] | 43 | |
| 44 | private: |
| 45 | typedef SkGradientShaderBase INHERITED; |
| 46 | const SkPoint fStart; |
| 47 | const SkPoint fEnd; |
| 48 | }; |
| 49 | |
rileya@google.com | 589708b | 2012-07-26 20:04:23 +0000 | [diff] [blame] | 50 | #endif |