blob: 5072ad67aee4df8c15569a91b94e07508a40d082 [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"
caryclark@google.comd892bd82013-06-17 14:10:36 +000011#include "SkTArray.h"
caryclark@google.com818b0cc2013-04-08 11:50:46 +000012
caryclark@google.comd892bd82013-06-17 14:10:36 +000013void CubicToQuads(const SkDCubic& cubic, double precision, SkTArray<SkDQuad, true>& quads);
caryclark@google.com818b0cc2013-04-08 11:50:46 +000014
15#endif