| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef UI_GFX_SKIA_COLOR_SPACE_UTIL_H_ |
| 6 #define UI_GFX_SKIA_COLOR_SPACE_UTIL_H_ |
| 7 |
| 8 #include "third_party/skia/include/core/SkColorSpace.h" |
| 9 #include "ui/gfx/gfx_export.h" |
| 10 |
| 11 namespace gfx { |
| 12 |
| 13 float GFX_EXPORT EvalSkTransferFn(const SkColorSpaceTransferFn& fn, float x); |
| 14 |
| 15 SkColorSpaceTransferFn GFX_EXPORT |
| 16 SkTransferFnInverse(const SkColorSpaceTransferFn& fn); |
| 17 |
| 18 bool GFX_EXPORT SkMatrixIsApproximatelyIdentity(const SkMatrix44& m); |
| 19 |
| 20 } // namespace gfx |
| 21 |
| 22 #endif // UI_GFX_SKIA_COLOR_SPACE_UTIL_H_ |
| OLD | NEW |