forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
RecyclingSourceSurface.h
63 lines (48 loc) · 2.23 KB
/
RecyclingSourceSurface.h
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
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=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 mozilla_image_RecyclingSourceSurface_h
#define mozilla_image_RecyclingSourceSurface_h
#include "mozilla/gfx/2D.h"
namespace mozilla {
namespace image {
class imgFrame;
/**
* This surface subclass will prevent the underlying surface from being recycled
* as long as it is still alive. We will create this surface to wrap imgFrame's
* mLockedSurface, if we are accessing it on a path that will keep the surface
* alive for an indeterminate period of time (e.g. imgFrame::GetSourceSurface,
* imgFrame::Draw with a recording or capture DrawTarget).
*/
class RecyclingSourceSurface final : public gfx::DataSourceSurface {
public:
RecyclingSourceSurface(imgFrame* aParent, gfx::DataSourceSurface* aSurface);
MOZ_DECLARE_REFCOUNTED_VIRTUAL_TYPENAME(RecyclingSourceSurface, override);
uint8_t* GetData() override { return mSurface->GetData(); }
int32_t Stride() override { return mSurface->Stride(); }
gfx::SurfaceType GetType() const override { return mType; }
gfx::IntSize GetSize() const override { return mSurface->GetSize(); }
gfx::SurfaceFormat GetFormat() const override {
return mSurface->GetFormat();
}
void AddSizeOfExcludingThis(MallocSizeOf aMallocSizeOf, size_t& aHeapSizeOut,
size_t& aNonHeapSizeOut, size_t& aExtHandlesOut,
uint64_t& aExtIdOut) const override {}
bool OnHeap() const override { return mSurface->OnHeap(); }
bool Map(MapType aType, MappedSurface* aMappedSurface) override {
return mSurface->Map(aType, aMappedSurface);
}
void Unmap() override { mSurface->Unmap(); }
gfx::DataSourceSurface* GetChildSurface() const { return mSurface; }
protected:
void GuaranteePersistance() override {}
~RecyclingSourceSurface() override;
RefPtr<imgFrame> mParent;
RefPtr<DataSourceSurface> mSurface;
gfx::SurfaceType mType;
};
} // namespace image
} // namespace mozilla
#endif // mozilla_image_RecyclingSourceSurface_h