3e7d511de3
Also enables ccpr and makes flags parsing more robust. Change-Id: Ia98467403de87423a63167681b2ee635b0fa593a Reviewed-on: https://skia-review.googlesource.com/c/skia/+/292690 Commit-Queue: Chris Dalton <csmartdalton@google.com> Reviewed-by: Kevin Lubick <kjlubick@google.com>
63 lines
1.3 KiB
C++
63 lines
1.3 KiB
C++
/*
|
|
* Copyright 2018 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "tools/viewer/SvgSlide.h"
|
|
|
|
#if defined(SK_XML)
|
|
|
|
#include "experimental/svg/model/SkSVGDOM.h"
|
|
#include "include/core/SkCanvas.h"
|
|
#include "include/core/SkStream.h"
|
|
|
|
SvgSlide::SvgSlide(const SkString& name, const SkString& path)
|
|
: SvgSlide(name, SkStream::MakeFromFile(path.c_str())) {
|
|
}
|
|
|
|
SvgSlide::SvgSlide(const SkString& name, std::unique_ptr<SkStream> stream)
|
|
: fStream(std::move(stream)) {
|
|
fName = name;
|
|
}
|
|
|
|
void SvgSlide::load(SkScalar w, SkScalar h) {
|
|
if (!fStream) {
|
|
SkDebugf("No svg stream for slide %s.\n", fName.c_str());
|
|
return;
|
|
}
|
|
|
|
fWinSize = SkSize::Make(w, h);
|
|
|
|
fStream->rewind();
|
|
fDom = SkSVGDOM::MakeFromStream(*fStream);
|
|
if (fDom) {
|
|
fDom->setContainerSize(fWinSize);
|
|
}
|
|
}
|
|
|
|
void SvgSlide::unload() {
|
|
fDom.reset();
|
|
}
|
|
|
|
void SvgSlide::resize(SkScalar w, SkScalar h) {
|
|
fWinSize = { w, h };
|
|
if (fDom) {
|
|
fDom->setContainerSize(fWinSize);
|
|
}
|
|
}
|
|
|
|
SkISize SvgSlide::getDimensions() const {
|
|
// We always scale to fill the window.
|
|
return fWinSize.toCeil();
|
|
}
|
|
|
|
void SvgSlide::draw(SkCanvas* canvas) {
|
|
if (fDom) {
|
|
fDom->render(canvas);
|
|
}
|
|
}
|
|
|
|
#endif // SK_XML
|