blob: 62b4af93678d6d8c1078a4b1bf4676253abe7089 (
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
27
28
29
30
31
32
33
34
35
36
37
38
|
/*
* Copyright 2012 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkReduceOrder_DEFINED
#define SkReduceOrder_DEFINED
#include "SkPath.h"
#include "SkPathOpsCubic.h"
#include "SkPathOpsLine.h"
#include "SkPathOpsQuad.h"
#include "SkTDArray.h"
union SkReduceOrder {
enum Quadratics {
kNo_Quadratics,
kAllow_Quadratics
};
enum Style {
kStroke_Style,
kFill_Style
};
int reduce(const SkDCubic& cubic, Quadratics, Style);
int reduce(const SkDLine& line);
int reduce(const SkDQuad& quad, Style);
static SkPath::Verb Cubic(const SkPoint pts[4], SkTDArray<SkPoint>* reducePts);
static SkPath::Verb Quad(const SkPoint pts[3], SkTDArray<SkPoint>* reducePts);
SkDLine fLine;
SkDQuad fQuad;
SkDCubic fCubic;
};
#endif
|