blob: 7ca70f3de3c16fad59bf7ac2971e64a05809f1ad [file] [log] [blame]
// 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 UI_COMPOSITOR_CLIP_TRANSFORM_RECORDER_H_
#define UI_COMPOSITOR_CLIP_TRANSFORM_RECORDER_H_
#include <vector>
#include "base/macros.h"
#include "ui/compositor/compositor_export.h"
namespace cc {
class DisplayItem;
class DisplayItemList;
}
namespace gfx {
class Path;
class Rect;
class Transform;
}
namespace ui {
class PaintContext;
// A class to provide scoped clips and transforms of painting to a
// DisplayItemList. The the clip/transform provided will be applied to any
// DisplayItems added to the DisplayItemList while this object is alive. In
// other words, any nested PaintRecorders or other ClipTransformRecorders will
// be clipped/transformed.
class COMPOSITOR_EXPORT ClipTransformRecorder {
public:
explicit ClipTransformRecorder(const PaintContext& context);
~ClipTransformRecorder();
void ClipRect(const gfx::Rect& clip_rect);
void ClipPath(const gfx::Path& clip_path);
void ClipPathWithAntiAliasing(const gfx::Path& clip_path);
void Transform(const gfx::Transform& transform);
private:
const PaintContext& context_;
std::vector<cc::DisplayItem*> closers_;
DISALLOW_COPY_AND_ASSIGN(ClipTransformRecorder);
};
} // namespace ui
#endif // UI_COMPOSITOR_CLIP_TRANSFORM_RECORDER_H_