| Index: ui/gfx/skia_color_space_util.h
|
| diff --git a/ui/gfx/skia_color_space_util.h b/ui/gfx/skia_color_space_util.h
|
| index 14bdab171de718e679ef1b3dc56c5b097a9344e5..f22b040e8848708656b917ff48ec511e61c8dc79 100644
|
| --- a/ui/gfx/skia_color_space_util.h
|
| +++ b/ui/gfx/skia_color_space_util.h
|
| @@ -22,12 +22,12 @@ SkTransferFnsApproximatelyCancel(const SkColorSpaceTransferFn& a,
|
| bool GFX_EXPORT
|
| SkTransferFnIsApproximatelyIdentity(const SkColorSpaceTransferFn& fn);
|
|
|
| -void GFX_EXPORT SkApproximateTransferFn(const float* x,
|
| +// Approximates the |n| points in |x| and |t| by the transfer function |fn|.
|
| +// Returns true if the approximation converged.
|
| +bool GFX_EXPORT SkApproximateTransferFn(const float* x,
|
| const float* t,
|
| size_t n,
|
| - SkColorSpaceTransferFn* fn,
|
| - float* error,
|
| - bool* nonlinear_fit_converged);
|
| + SkColorSpaceTransferFn* fn);
|
|
|
| bool GFX_EXPORT SkMatrixIsApproximatelyIdentity(const SkMatrix44& m);
|
|
|
|
|