Bug 1632310 [wpt PR 23186] - Add test for computed versus resolved style., a=testonly
[gecko.git] / gfx / layers / wr / WebRenderDrawEventRecorder.cpp
blobdb4345d592c4742b8a13097494a8ba79bcd61c9c
1 /* -*- Mode: C++; tab-width: 20; 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
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "WebRenderDrawEventRecorder.h"
7 #include "mozilla/layers/SharedSurfacesChild.h"
8 #include "mozilla/layers/SharedSurfacesParent.h"
10 namespace mozilla {
11 using namespace gfx;
13 namespace layers {
15 void WebRenderDrawEventRecorder::StoreSourceSurfaceRecording(
16 SourceSurface* aSurface, const char* aReason) {
17 wr::ExternalImageId extId;
18 nsresult rv = layers::SharedSurfacesChild::Share(aSurface, extId);
19 if (NS_FAILED(rv)) {
20 DrawEventRecorderMemory::StoreSourceSurfaceRecording(aSurface, aReason);
21 return;
24 StoreExternalSurfaceRecording(aSurface, wr::AsUint64(extId));
27 already_AddRefed<SourceSurface> WebRenderTranslator::LookupExternalSurface(
28 uint64_t aKey) {
29 return SharedSurfacesParent::Get(wr::ToExternalImageId(aKey));
32 } // namespace layers
33 } // namespace mozilla