Home | History | Annotate | Download | only in core
      1 /*
      2  * Copyright 2016 Google Inc.
      3  *
      4  * Use of this source code is governed by a BSD-style license that can be
      5  * found in the LICENSE file.
      6  */
      7 
      8 #ifndef SkICC_DEFINED
      9 #define SkICC_DEFINED
     10 
     11 #include "SkData.h"
     12 
     13 struct skcms_Matrix3x3;
     14 struct skcms_TransferFunction;
     15 
     16 SK_API sk_sp<SkData> SkWriteICCProfile(const skcms_TransferFunction&,
     17                                        const skcms_Matrix3x3& toXYZD50);
     18 
     19 #endif//SkICC_DEFINED
     20