64400d95d6
This reverts commit dd29e20904
.
Reason for revert: breaking the G3 roll
Original change's description:
> [svg] Plumb a ResourceProvider
>
> ... for image loading.
>
> Update the SVG tools to pass local/FS resource providers.
>
> Change-Id: I2c0e446047da87f177fde0f23b7ea1f0a856e808
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/359996
> Commit-Queue: Florin Malita <fmalita@google.com>
> Reviewed-by: Tyler Denniston <tdenniston@google.com>
TBR=fmalita@chromium.org,fmalita@google.com,tdenniston@google.com
Change-Id: If5f9673f9ff40dd5f8a8f9cf8f46a4342f29f31f
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/360602
Reviewed-by: Florin Malita <fmalita@google.com>
Commit-Queue: Florin Malita <fmalita@google.com>
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
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 SkSVGDOM_DEFINED
|
|
#define SkSVGDOM_DEFINED
|
|
|
|
#include "include/core/SkFontMgr.h"
|
|
#include "include/core/SkRefCnt.h"
|
|
#include "include/core/SkSize.h"
|
|
#include "include/private/SkTemplates.h"
|
|
#include "modules/svg/include/SkSVGIDMapper.h"
|
|
|
|
class SkCanvas;
|
|
class SkDOM;
|
|
class SkStream;
|
|
class SkSVGNode;
|
|
class SkSVGSVG;
|
|
|
|
class SkSVGDOM : public SkRefCnt {
|
|
public:
|
|
class Builder final {
|
|
public:
|
|
/**
|
|
* Specify a font manager for loading SVG fonts.
|
|
*/
|
|
Builder& setFontManager(sk_sp<SkFontMgr>);
|
|
|
|
sk_sp<SkSVGDOM> make(SkStream&) const;
|
|
|
|
private:
|
|
sk_sp<SkFontMgr> fFontMgr;
|
|
};
|
|
|
|
static sk_sp<SkSVGDOM> MakeFromStream(SkStream& str) {
|
|
return Builder().make(str);
|
|
}
|
|
|
|
const SkSize& containerSize() const;
|
|
void setContainerSize(const SkSize&);
|
|
|
|
// Returns the node with the given id, or nullptr if not found.
|
|
sk_sp<SkSVGNode>* findNodeById(const char* id);
|
|
|
|
void render(SkCanvas*) const;
|
|
|
|
private:
|
|
SkSVGDOM(sk_sp<SkSVGSVG>, sk_sp<SkFontMgr>, SkSVGIDMapper&&);
|
|
|
|
const sk_sp<SkSVGSVG> fRoot;
|
|
const sk_sp<SkFontMgr> fFontMgr;
|
|
const SkSVGIDMapper fIDMapper;
|
|
|
|
SkSize fContainerSize;
|
|
};
|
|
|
|
#endif // SkSVGDOM_DEFINED
|