You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
541 B
21 lines
541 B
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "include/core/SkTypes.h"
|
|
#if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS)
|
|
|
|
#include "include/core/SkData.h"
|
|
#include "include/core/SkImageGenerator.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace SkImageGeneratorCG {
|
|
SK_API std::unique_ptr<SkImageGenerator> MakeFromEncodedCG(sk_sp<SkData>);
|
|
} // namespace SkImageGeneratorCG
|
|
|
|
#endif //defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS)
|