blob: e4ab829577fb37ee3d466d2e6efd29e04a829f20 [file] [log] [blame]
caryclark@google.com818b0cc2013-04-08 11:50:46 +00001/*
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#ifndef PathOpsTestCommon_DEFINED
8#define PathOpsTestCommon_DEFINED
9
10#include "SkPathOpsQuad.h"
11#include "SkTDArray.h"
12
13void CubicToQuads(const SkDCubic& cubic, double precision, SkTDArray<SkDQuad>& quads);
14
15#endif