CompositorSession.cpp (1274B)
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/. */ 6 #include "CompositorSession.h" 7 #include "base/process_util.h" 8 #include "GPUChild.h" 9 #include "mozilla/gfx/Logging.h" 10 #include "mozilla/gfx/GPUProcessHost.h" 11 #include "mozilla/layers/CompositorBridgeChild.h" 12 #include "mozilla/layers/CompositorBridgeParent.h" 13 14 namespace mozilla { 15 namespace layers { 16 17 using namespace gfx; 18 19 CompositorSession::CompositorSession(nsIWidget* aWidget, 20 CompositorWidgetDelegate* aDelegate, 21 CompositorBridgeChild* aChild, 22 const LayersId& aRootLayerTreeId) 23 : mWidget(aWidget), 24 mCompositorWidgetDelegate(aDelegate), 25 mCompositorBridgeChild(aChild), 26 mRootLayerTreeId(aRootLayerTreeId) {} 27 28 CompositorSession::~CompositorSession() = default; 29 30 CompositorBridgeChild* CompositorSession::GetCompositorBridgeChild() { 31 return mCompositorBridgeChild; 32 } 33 34 } // namespace layers 35 } // namespace mozilla