blob: 95362107c9ac2a402ee509d7af832281bd0b348c [file] [log] [blame]
/*
* 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 "include/core/SkRefCnt.h"
#include "include/core/SkTypes.h"
#include "include/private/SkDeferredDisplayList.h"
#include <utility>
class SkSurfaceCharacterization;
#if SK_SUPPORT_GPU
#include "src/gpu/GrOpList.h"
#include "src/gpu/ccpr/GrCCPerOpListPaths.h"
#endif
SkDeferredDisplayList::SkDeferredDisplayList(const SkSurfaceCharacterization& characterization,
sk_sp<LazyProxyData> lazyProxyData)
: fCharacterization(characterization)
, fLazyProxyData(std::move(lazyProxyData)) {
}
SkDeferredDisplayList::~SkDeferredDisplayList() {
}