chromium/third_party/skia/src/gpu/RectanizerSkyline.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/gpu/RectanizerSkyline.h"

#include "include/private/base/SkAssert.h"
#include "src/core/SkIPoint16.h"

#include <algorithm>

namespace skgpu {

bool RectanizerSkyline::addRect(int width, int height, SkIPoint16* loc) {}

bool RectanizerSkyline::rectangleFits(int skylineIndex, int width, int height, int* ypos) const {}

void RectanizerSkyline::addSkylineLevel(int skylineIndex, int x, int y, int width, int height) {}

///////////////////////////////////////////////////////////////////////////////

Rectanizer* Rectanizer::Factory(int width, int height) {}

} // End of namespace skgpu