blob: 0f5944156b6d8128a112d5df5017d60516404101 [file] [log] [blame]
// Copyright 2014 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.
// Note:
// 1. This file is copied from
// "src/platform2/media_perception/mojom/geometry.mojom" in the CrOS repo.
// 2. On chromium, we must use the standard version, i.e.,
// "ui/gfx/geometry/mojom/geometry.mojom" in the chromium repo and must not
// sync this file to chromium.
module gfx.mojom;
[Stable]
struct Point {
int32 x;
int32 y;
};
[Stable]
struct PointF {
float x;
float y;
};
struct Point3F {
float x;
float y;
float z;
};
struct Size {
int32 width;
int32 height;
};
struct SizeF {
float width;
float height;
};
struct Rect {
int32 x;
int32 y;
int32 width;
int32 height;
};
struct RectF {
float x;
float y;
float width;
float height;
};
struct Insets {
int32 top;
int32 left;
int32 bottom;
int32 right;
};
struct InsetsF {
float top;
float left;
float bottom;
float right;
};
struct Vector2d {
int32 x;
int32 y;
};
struct Vector2dF {
float x;
float y;
};
struct Vector3dF {
float x;
float y;
float z;
};
struct ScrollOffset {
float x;
float y;
};
struct Quaternion {
double x;
double y;
double z;
double w;
};