chromium/third_party/skia/src/pathops/SkOpContour.cpp

/*
* Copyright 2013 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "src/pathops/SkOpContour.h"

#include "src/pathops/SkPathWriter.h"

#include <cstring>

void SkOpContour::toPath(SkPathWriter* path) const {}

void SkOpContour::toReversePath(SkPathWriter* path) const {}

SkOpSpan* SkOpContour::undoneSpan() {}

void SkOpContourBuilder::addConic(SkPoint pts[3], SkScalar weight) {}

void SkOpContourBuilder::addCubic(SkPoint pts[4]) {}

void SkOpContourBuilder::addCurve(SkPath::Verb verb, const SkPoint pts[4], SkScalar weight) {}

void SkOpContourBuilder::addLine(const SkPoint pts[2]) {}

void SkOpContourBuilder::addQuad(SkPoint pts[3]) {}

void SkOpContourBuilder::flush() {}