naiveproxy/ui/gfx/image/mojo/image.mojom

23 lines
639 B
Plaintext
Raw Normal View History

2018-12-10 05:59:24 +03:00
// Copyright 2017 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.
module gfx.mojom;
import "skia/public/interfaces/bitmap.mojom";
struct ImageSkiaRep {
// Transport of the bitmap in this representation.
skia.mojom.Bitmap bitmap;
// Corresponding scale of the bitmap or 0 if unscaled.
float scale;
};
// Mojo transport for an ImageSkia via shared buffer. Note that transporting an
// ImageSkia over mojo will load all of its image representations for supported
// scales.
struct ImageSkia {
array<ImageSkiaRep> image_reps;
};