chromium/third_party/skia/src/core/SkAutoPixmapStorage.cpp

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

#include "include/core/SkData.h"
#include "include/core/SkImageInfo.h"
#include "include/private/base/SkAssert.h"

#include <utility>

SkAutoPixmapStorage::SkAutoPixmapStorage() :{}

SkAutoPixmapStorage::~SkAutoPixmapStorage() {}

SkAutoPixmapStorage::SkAutoPixmapStorage(SkAutoPixmapStorage&& other) :{}

SkAutoPixmapStorage& SkAutoPixmapStorage::operator=(SkAutoPixmapStorage&& other) {}

size_t SkAutoPixmapStorage::AllocSize(const SkImageInfo& info, size_t* rowBytes) {}

bool SkAutoPixmapStorage::tryAlloc(const SkImageInfo& info) {}

void SkAutoPixmapStorage::alloc(const SkImageInfo& info) {}

void* SkAutoPixmapStorage::detachPixels() {}

sk_sp<SkData> SkAutoPixmapStorage::detachPixelsAsData() {}