summaryrefslogtreecommitdiffstats
path: root/gfx/layers/client/ClientPaintedLayer.h
blob: 96398262af8db25f4327ebb2442a0cfc83b0605e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */

#ifndef GFX_CLIENTPAINTEDLAYER_H
#define GFX_CLIENTPAINTEDLAYER_H

#include "ClientLayerManager.h"                // for ClientLayerManager, etc
#include "Layers.h"                            // for PaintedLayer, etc
#include "RotatedBuffer.h"                     // for RotatedBuffer, etc
#include "mozilla/Attributes.h"                // for override
#include "mozilla/RefPtr.h"                    // for RefPtr
#include "mozilla/layers/ContentClient.h"      // for ContentClient
#include "mozilla/mozalloc.h"                  // for operator delete
#include "nsDebug.h"                           // for NS_ASSERTION
#include "nsISupportsImpl.h"                   // for MOZ_COUNT_CTOR, etc
#include "nsRegion.h"                          // for nsIntRegion
#include "mozilla/layers/PLayerTransaction.h"  // for PaintedLayerAttributes

namespace mozilla {
namespace gfx {
class DrawEventRecorderMemory;
class DrawTargetCapture;
};  // namespace gfx

namespace layers {
class CompositableClient;
class ShadowableLayer;
class SpecificLayerAttributes;

class ClientPaintedLayer : public PaintedLayer, public ClientLayer {
 public:
  typedef ContentClient::PaintState PaintState;
  typedef ContentClient::ContentType ContentType;

  explicit ClientPaintedLayer(
      ClientLayerManager* aLayerManager,
      LayerManager::PaintedLayerCreationHint aCreationHint = LayerManager::NONE)
      : PaintedLayer(aLayerManager, static_cast<ClientLayer*>(this),
                     aCreationHint),
        mContentClient(nullptr) {
    MOZ_COUNT_CTOR(ClientPaintedLayer);
  }

 protected:
  virtual ~ClientPaintedLayer() {
    if (mContentClient) {
      mContentClient->OnDetach();
      mContentClient = nullptr;
    }
    MOZ_COUNT_DTOR(ClientPaintedLayer);
  }

 public:
  void SetVisibleRegion(const LayerIntRegion& aRegion) override {
    NS_ASSERTION(ClientManager()->InConstruction(),
                 "Can only set properties in construction phase");
    PaintedLayer::SetVisibleRegion(aRegion);
  }
  void InvalidateRegion(const nsIntRegion& aRegion) override {
    NS_ASSERTION(ClientManager()->InConstruction(),
                 "Can only set properties in construction phase");
    mInvalidRegion.Add(aRegion);
    UpdateValidRegionAfterInvalidRegionChanged();
  }

  void RenderLayer() override { RenderLayerWithReadback(nullptr); }

  void RenderLayerWithReadback(ReadbackProcessor* aReadback) override;

  void ClearCachedResources() override {
    if (mContentClient) {
      mContentClient->Clear();
    }
    ClearValidRegion();
    DestroyBackBuffer();
  }

  void HandleMemoryPressure() override {
    if (mContentClient) {
      mContentClient->HandleMemoryPressure();
    }
  }

  void FillSpecificAttributes(SpecificLayerAttributes& aAttrs) override {
    aAttrs = PaintedLayerAttributes(GetValidRegion());
  }

  ClientLayerManager* ClientManager() {
    return static_cast<ClientLayerManager*>(mManager);
  }

  Layer* AsLayer() override { return this; }
  ShadowableLayer* AsShadowableLayer() override { return this; }

  CompositableClient* GetCompositableClient() override {
    return mContentClient;
  }

  void Disconnect() override { mContentClient = nullptr; }

 protected:
  void RecordThebes();
  bool HasMaskLayers();
  bool EnsureContentClient();
  uint32_t GetPaintFlags(ReadbackProcessor* aReadback);
  void UpdateContentClient(PaintState& aState);
  bool UpdatePaintRegion(PaintState& aState);
  void FinishPaintState(PaintState& aState);

  void PrintInfo(std::stringstream& aStream, const char* aPrefix) override;

  void DestroyBackBuffer() { mContentClient = nullptr; }

  RefPtr<ContentClient> mContentClient;
};

}  // namespace layers
}  // namespace mozilla

#endif