2011-02-16 22:43:30 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-02-16 22:43:30 +00:00
|
|
|
|
|
|
|
#ifndef GFX_READBACKPROCESSOR_H
|
|
|
|
#define GFX_READBACKPROCESSOR_H
|
|
|
|
|
2013-08-11 23:17:23 +00:00
|
|
|
#include <stdint.h> // for uint64_t
|
|
|
|
#include "nsRect.h" // for nsIntRect
|
|
|
|
#include "nsTArray.h" // for nsTArray
|
|
|
|
|
|
|
|
class nsIntRegion;
|
2011-02-16 22:43:30 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
2012-08-21 04:06:46 +00:00
|
|
|
class ContainerLayer;
|
|
|
|
class ReadbackLayer;
|
2014-09-26 17:06:08 +00:00
|
|
|
class PaintedLayer;
|
2012-08-21 04:06:46 +00:00
|
|
|
|
2011-02-16 22:43:30 +00:00
|
|
|
class ReadbackProcessor {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Called by the container before processing any child layers. Call this
|
|
|
|
* if any child layer might have changed in any way (other than content-only
|
2014-09-26 17:06:08 +00:00
|
|
|
* changes to layers other than ColorLayers and PaintedLayers).
|
2011-02-16 22:43:30 +00:00
|
|
|
*
|
|
|
|
* This method recomputes the relationship between ReadbackLayers and
|
|
|
|
* sibling layers, and dispatches changes to ReadbackLayers. Except that
|
2014-09-26 17:06:08 +00:00
|
|
|
* if a PaintedLayer needs its contents sent to some ReadbackLayer, we'll
|
|
|
|
* just record that internally and later the PaintedLayer should call
|
|
|
|
* GetPaintedLayerUpdates when it paints, to find out which rectangle needs
|
2011-02-16 22:43:30 +00:00
|
|
|
* to be sent, and the ReadbackLayer it needs to be sent to.
|
|
|
|
*/
|
|
|
|
void BuildUpdates(ContainerLayer* aContainer);
|
|
|
|
|
|
|
|
struct Update {
|
|
|
|
/**
|
2014-09-26 17:06:08 +00:00
|
|
|
* The layer a PaintedLayer should send its contents to.
|
2011-02-16 22:43:30 +00:00
|
|
|
*/
|
|
|
|
ReadbackLayer* mLayer;
|
|
|
|
/**
|
2014-09-26 17:06:08 +00:00
|
|
|
* The rectangle of content that it should send, in the PaintedLayer's
|
|
|
|
* coordinate system. This rectangle is guaranteed to be in the PaintedLayer's
|
2011-02-16 22:43:30 +00:00
|
|
|
* visible region. Translate it to mLayer's coordinate system
|
|
|
|
* by adding mLayer->GetBackgroundLayerOffset().
|
|
|
|
*/
|
|
|
|
nsIntRect mUpdateRect;
|
|
|
|
/**
|
|
|
|
* The sequence counter value to use when calling DoUpdate
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
uint64_t mSequenceCounter;
|
2011-02-16 22:43:30 +00:00
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Appends any ReadbackLayers that need to be updated, and the rects that
|
2014-09-26 17:06:08 +00:00
|
|
|
* need to be updated, to aUpdates. Only need to call this for PaintedLayers
|
2011-02-16 22:43:30 +00:00
|
|
|
* that have been marked UsedForReadback().
|
|
|
|
* Each Update's mLayer's mBackgroundLayer will have been set to aLayer.
|
2014-09-26 17:06:08 +00:00
|
|
|
* If a PaintedLayer doesn't call GetPaintedLayerUpdates, then all the
|
|
|
|
* ReadbackLayers that needed data from that PaintedLayer will be marked
|
2011-02-16 22:43:30 +00:00
|
|
|
* as having unknown backgrounds.
|
|
|
|
* @param aUpdateRegion if non-null, this region is set to the union
|
|
|
|
* of the mUpdateRects.
|
|
|
|
*/
|
2014-09-26 17:06:08 +00:00
|
|
|
void GetPaintedLayerUpdates(PaintedLayer* aLayer,
|
2011-02-16 22:43:30 +00:00
|
|
|
nsTArray<Update>* aUpdates,
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIntRegion* aUpdateRegion = nullptr);
|
2011-02-16 22:43:30 +00:00
|
|
|
|
|
|
|
~ReadbackProcessor();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void BuildUpdatesForLayer(ReadbackLayer* aLayer);
|
|
|
|
|
|
|
|
nsTArray<Update> mAllUpdates;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* GFX_READBACKPROCESSOR_H */
|