/* * 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 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) : fCharacterization(characterization) , fLazyProxyData(std::move(lazyProxyData)) { } SkDeferredDisplayList::~SkDeferredDisplayList() { }