blob: 651670e20c9c04a370dcdd01b036f673e3378ebb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "skia/ext/skia_utils_win.h"
#include "SkRect.h"
#include "SkGradientShader.h"
namespace skia {
SkShader* CreateGradientShader(int start_point,
int end_point,
SkColor start_color,
SkColor end_color) {
SkColor grad_colors[2] = { start_color, end_color};
SkPoint grad_points[2];
grad_points[0].set(SkIntToScalar(0), SkIntToScalar(start_point));
grad_points[1].set(SkIntToScalar(0), SkIntToScalar(end_point));
return SkGradientShader::CreateLinear(
grad_points, grad_colors, NULL, 2, SkShader::kRepeat_TileMode);
}
} // namespace skia
|