blob: db6b17fed3405369ee3e8cb3c7544bf5760d3863 [file]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_PLAYBACK_DISCARDABLE_IMAGE_MAP_H_
#define CC_PLAYBACK_DISCARDABLE_IMAGE_MAP_H_
#include <utility>
#include <vector>
#include "base/memory/scoped_ptr.h"
#include "cc/base/cc_export.h"
#include "cc/base/rtree.h"
#include "cc/playback/draw_image.h"
#include "third_party/skia/include/core/SkPicture.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"
class SkImage;
namespace cc {
// This class is used for generating discardable images data (see DrawImage
// for the type of data it stores). It allows the client to query a particular
// rect and get back a list of DrawImages in that rect.
class CC_EXPORT DiscardableImageMap {
public:
class CC_EXPORT ScopedMetadataGenerator {
public:
ScopedMetadataGenerator(DiscardableImageMap* image_map,
const gfx::Size& bounds);
~ScopedMetadataGenerator();
SkCanvas* canvas() { return metadata_canvas_.get(); }
private:
DiscardableImageMap* image_map_;
scoped_ptr<SkCanvas> metadata_canvas_;
};
DiscardableImageMap();
~DiscardableImageMap();
bool empty() const { return all_images_.empty(); }
void GetDiscardableImagesInRect(const gfx::Rect& rect,
float raster_scale,
std::vector<DrawImage>* images) const;
private:
friend class ScopedMetadataGenerator;
friend class DiscardableImageMapTest;
using PositionDrawImage = std::pair<DrawImage, gfx::RectF>;
scoped_ptr<SkCanvas> BeginGeneratingMetadata(const gfx::Size& bounds);
void EndGeneratingMetadata();
std::vector<PositionDrawImage> all_images_;
RTree images_rtree_;
};
} // namespace cc
#endif // CC_PLAYBACK_DISCARDABLE_IMAGE_MAP_H_