blob: 046a1e10b4b9ca62c653eef12b9b6292b2f41bb6 [file] [log] [blame]
rileya@google.com589708b2012-07-26 20:04:23 +00001
2/*
3 * Copyright 2012 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9#ifndef SkLinearGradient_DEFINED
10#define SkLinearGradient_DEFINED
11
12#include "SkGradientShaderPriv.h"
13
14class SkLinearGradient : public SkGradientShaderBase {
15public:
16 SkLinearGradient(const SkPoint pts[2],
17 const SkColor colors[], const SkScalar pos[], int colorCount,
18 SkShader::TileMode mode, SkUnitMapper* mapper);
19
20 virtual bool setContext(const SkBitmap&, const SkPaint&, const SkMatrix&) SK_OVERRIDE;
21 virtual void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVERRIDE;
22 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OVERRIDE;
23 virtual BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const SK_OVERRIDE;
24 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE;
bsalomon@google.com0ac6af42013-01-16 15:16:18 +000025 virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint&) const SK_OVERRIDE;
rileya@google.com589708b2012-07-26 20:04:23 +000026
robertphillips@google.com76f9e932013-01-15 20:17:47 +000027 SK_DEVELOPER_TO_STRING()
rileya@google.com589708b2012-07-26 20:04:23 +000028 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient)
29
30protected:
31 SkLinearGradient(SkFlattenableReadBuffer& buffer);
32 virtual void flatten(SkFlattenableWriteBuffer& buffer) const SK_OVERRIDE;
33
34private:
35 typedef SkGradientShaderBase INHERITED;
36 const SkPoint fStart;
37 const SkPoint fEnd;
38};
39
rileya@google.com589708b2012-07-26 20:04:23 +000040#endif
41