blob: 6dbe62a2f915647525c4270447ada1fb9b68d287 [file] [log] [blame]
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001/*
2 * Copyright 2018 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkWuffsCodec_DEFINED
9#define SkWuffsCodec_DEFINED
10
11#include "SkCodec.h"
12
13// These functions' types match DecoderProc in SkCodec.cpp.
14bool SkWuffsCodec_IsFormat(const void*, size_t);
15std::unique_ptr<SkCodec> SkWuffsCodec_MakeFromStream(std::unique_ptr<SkStream>, SkCodec::Result*);
16
17#endif // SkWuffsCodec_DEFINED