backout 29799f914cab, Bug 917642 - [Helix] Please update the helix blobs
[gecko.git] / gfx / layers / LayerTreeInvalidation.h
blobc2b8e679a58d8b540ee4ffb81a412ca6533b0e53
1 /*-*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4 * You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef GFX_LAYER_TREE_INVALIDATION_H
7 #define GFX_LAYER_TREE_INVALIDATION_H
9 #include "nsRegion.h" // for nsIntRegion
11 class nsPresContext;
12 struct nsIntPoint;
14 namespace mozilla {
15 namespace layers {
17 class Layer;
18 class ContainerLayer;
20 /**
21 * Callback for ContainerLayer invalidations.
23 * @param aContainer ContainerLayer being invalidated.
24 * @param aRegion Invalidated region in the ContainerLayer's coordinate
25 * space.
27 typedef void (*NotifySubDocInvalidationFunc)(ContainerLayer* aLayer,
28 const nsIntRegion& aRegion);
30 /**
31 * A set of cached layer properties (including those of child layers),
32 * used for comparing differences in layer trees.
34 struct LayerProperties
36 virtual ~LayerProperties() {}
38 /**
39 * Copies the current layer tree properties into
40 * a new LayerProperties object.
42 * @param Layer tree to copy, or nullptr if we have no
43 * initial layer tree.
45 static LayerProperties* CloneFrom(Layer* aRoot);
47 /**
48 * Clear all invalidation status from this layer tree.
50 static void ClearInvalidations(Layer* aRoot);
52 /**
53 * Compares a set of existing layer tree properties to the current layer
54 * tree and generates the changed rectangle.
56 * @param aRoot Root layer of the layer tree to compare against.
57 * @param aCallback If specified, callback to call when ContainerLayers
58 * are invalidated.
59 * @return Painted area changed by the layer tree changes.
61 virtual nsIntRegion ComputeDifferences(Layer* aRoot,
62 NotifySubDocInvalidationFunc aCallback) = 0;
65 virtual void MoveBy(const nsIntPoint& aOffset) = 0;
68 } // namespace layers
69 } // namespace mozilla
71 #endif /* GFX_LAYER_TREE_INVALIDATON_H */