summaryrefslogtreecommitdiffstats
path: root/gfx/layers/LayersTypes.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-15 03:34:42 +0000
commitda4c7e7ed675c3bf405668739c3012d140856109 (patch)
treecdd868dba063fecba609a1d819de271f0d51b23e /gfx/layers/LayersTypes.h
parentAdding upstream version 125.0.3. (diff)
downloadfirefox-da4c7e7ed675c3bf405668739c3012d140856109.tar.xz
firefox-da4c7e7ed675c3bf405668739c3012d140856109.zip
Adding upstream version 126.0.upstream/126.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/layers/LayersTypes.h')
-rw-r--r--gfx/layers/LayersTypes.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/gfx/layers/LayersTypes.h b/gfx/layers/LayersTypes.h
index 340ea76fa5..c02851d81f 100644
--- a/gfx/layers/LayersTypes.h
+++ b/gfx/layers/LayersTypes.h
@@ -46,9 +46,11 @@ class TextureHost;
#undef NONE
#undef OPAQUE
-struct LayersId {
+struct LayersId final {
uint64_t mId = 0;
+ auto MutTiedFields() { return std::tie(mId); }
+
bool IsValid() const { return mId != 0; }
// Allow explicit cast to a uint64_t for now
@@ -75,9 +77,11 @@ struct LayersId {
};
template <typename T>
-struct BaseTransactionId {
+struct BaseTransactionId final {
uint64_t mId = 0;
+ auto MutTiedFields() { return std::tie(mId); }
+
bool IsValid() const { return mId != 0; }
[[nodiscard]] BaseTransactionId<T> Next() const {