45420a945c
also, a new DM::Src. motivation: To be used to test the printing pipeline in Chromium. BUG=skia:5370 GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2023593002 Review-Url: https://codereview.chromium.org/2023593002
17 lines
482 B
C
17 lines
482 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 SkMultiPictureDocument_DEFINED
|
|
#define SkMultiPictureDocument_DEFINED
|
|
|
|
#include "SkDocument.h"
|
|
|
|
/** Writes into an experimental, undocumented file format that is
|
|
useful for debugging documents printed via Skia. */
|
|
SK_API sk_sp<SkDocument> SkMakeMultiPictureDocument(SkWStream* dst);
|
|
|
|
#endif // SkMultiPictureDocument_DEFINED
|