mirror of
https://github.com/thead-yocto-mirror/skia
synced 2026-06-21 08:52:36 +02:00
21 lines
508 B
C++
21 lines
508 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.
|
|
*/
|
|
|
|
#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>);
|
|
}
|
|
|
|
#endif //defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_IOS)
|