blob: 613515046c7d0fde08a7835eac6aac2bb3eb35c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright 2020 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 UI_GFX_GEOMETRY_INSETS_CONVERSIONS_H_
#define UI_GFX_GEOMETRY_INSETS_CONVERSIONS_H_
#include "ui/gfx/geometry/geometry_export.h"
namespace gfx {
class Insets;
class InsetsF;
// Returns an Insets with each component from the input InsetsF floored.
GEOMETRY_EXPORT Insets ToFlooredInsets(const InsetsF& insets);
// Returns an Insets with each component from the input InsetsF ceiled.
GEOMETRY_EXPORT Insets ToCeiledInsets(const InsetsF& insets);
// Returns a Point with each component from the input PointF rounded.
GEOMETRY_EXPORT Insets ToRoundedInsets(const InsetsF& insets);
} // namespace gfx
#endif // UI_GFX_GEOMETRY_INSETS_CONVERSIONS_H_
|