summaryrefslogtreecommitdiff
path: root/chromium/components/arc/common/bitmap.mojom
blob: 02d96647b6cf7833d42a0a8d7e84f92cfa1e9da4 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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.

module arc.mojom;

struct ArcBitmap {
  uint32 width;
  uint32 height;
  array<uint8> pixel_data;  // Must be ARGB_8888
};