1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "DrawEventRecorder.h"
12 void DrawEventRecorderPRFileDesc::RecordEvent(
13 const gfx::RecordedEvent
& aEvent
) {
14 aEvent
.RecordToStream(mOutputStream
);
19 DrawEventRecorderPRFileDesc::~DrawEventRecorderPRFileDesc() {
25 void DrawEventRecorderPRFileDesc::Flush() { mOutputStream
.Flush(); }
27 bool DrawEventRecorderPRFileDesc::IsOpen() { return mOutputStream
.IsOpen(); }
29 void DrawEventRecorderPRFileDesc::OpenFD(PRFileDesc
* aFd
) {
30 MOZ_DIAGNOSTIC_ASSERT(!IsOpen());
32 mOutputStream
.OpenFD(aFd
);
33 WriteHeader(mOutputStream
);
36 void DrawEventRecorderPRFileDesc::Close() {
37 MOZ_DIAGNOSTIC_ASSERT(IsOpen());
39 mOutputStream
.Close();
42 void DrawEventRecorderPRFileDesc::AddDependentSurface(uint64_t aDependencyId
) {
43 mDependentSurfaces
.AppendElement(aDependencyId
);
46 nsTArray
<uint64_t>&& DrawEventRecorderPRFileDesc::TakeDependentSurfaces() {
47 return std::move(mDependentSurfaces
);
51 } // namespace mozilla