/* * Copyright 2015 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkBigPicture_DEFINED #define SkBigPicture_DEFINED #include "include/core/SkBBHFactory.h" #include "include/core/SkPicture.h" #include "include/core/SkRect.h" #include "include/core/SkRefCnt.h" #include "include/private/base/SkNoncopyable.h" #include "include/private/base/SkTemplates.h" #include "src/core/SkRecord.h" #include <cstddef> #include <memory> class SkCanvas; // An implementation of SkPicture supporting an arbitrary number of drawing commands. // This is called "big" because there used to be a "mini" that only supported a subset of the // calls as an optimization. class SkBigPicture final : public SkPicture { … }; #endif//SkBigPicture_DEFINED