blob: 5aeb5cb64abc5f13c8d0e2341c7b29dcc6d38357 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Copyright 2015 The Android Open Source Project
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkImageGenerator.h"
std::unique_ptr<SkImageGenerator> SkImageGenerator::MakeFromEncodedImpl(sk_sp<SkData>) {
return nullptr;
}
|