blob: a39b987785f67b4f010187a6e6693aa615f92d27 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_ARC_BITMAP_BITMAP_MOJOM_TRAITS_H_
#define COMPONENTS_ARC_BITMAP_BITMAP_MOJOM_TRAITS_H_
#include "base/containers/span.h"
#include "components/arc/mojom/bitmap.mojom.h"
#include "third_party/skia/include/core/SkBitmap.h"
namespace mojo {
template <>
struct StructTraits<arc::mojom::ArcBitmapDataView, SkBitmap> {
static const base::span<const uint8_t> pixel_data(const SkBitmap& r) {
const SkImageInfo& info = r.info();
DCHECK_EQ(info.colorType(), kRGBA_8888_SkColorType);
return base::make_span(static_cast<uint8_t*>(r.getPixels()),
r.computeByteSize());
}
static uint32_t width(const SkBitmap& r) { return r.width(); }
static uint32_t height(const SkBitmap& r) { return r.height(); }
static bool Read(arc::mojom::ArcBitmapDataView data, SkBitmap* out);
};
} // namespace mojo
#endif // COMPONENTS_ARC_BITMAP_BITMAP_MOJOM_TRAITS_H_