6a2a1f6c0f
Change-Id: I03760e49437b82bc8faf76fa42ce876d618bf516 Reviewed-on: https://skia-review.googlesource.com/c/167680 Commit-Queue: Brian Osman <brianosman@google.com> Auto-Submit: Mike Klein <mtklein@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
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
|