mirror of https://github.com/Chlumsky/msdfgen.git
24 lines
516 B
C++
24 lines
516 B
C++
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkICC_DEFINED
|
|
#define SkICC_DEFINED
|
|
|
|
#include "SkData.h"
|
|
#include "SkMatrix44.h"
|
|
#include "SkRefCnt.h"
|
|
|
|
struct SkColorSpaceTransferFn;
|
|
|
|
SK_API sk_sp<SkData> SkWriteICCProfile(const SkColorSpaceTransferFn&, const float toXYZD50[9]);
|
|
|
|
namespace SkICC {
|
|
SK_API sk_sp<SkData> WriteToICC(const SkColorSpaceTransferFn&, const SkMatrix44&);
|
|
}
|
|
|
|
#endif//SkICC_DEFINED
|