Bug 1632310 [wpt PR 23186] - Add test for computed versus resolved style., a=testonly
[gecko.git] / gfx / layers / WaylandDMABUFSurfaceImage.cpp
blob0a33e079963af1ed04bc29eb92e812040770cdfb
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 "WaylandDMABUFSurfaceImage.h"
8 #include "gfxPlatform.h"
9 #include "mozilla/layers/CompositableClient.h"
10 #include "mozilla/layers/CompositableForwarder.h"
11 #include "mozilla/layers/WaylandDMABUFTextureClientOGL.h"
12 #include "mozilla/UniquePtr.h"
14 using namespace mozilla;
15 using namespace mozilla::layers;
16 using namespace mozilla::gfx;
18 TextureClient* WaylandDMABUFSurfaceImage::GetTextureClient(
19 KnowsCompositor* aKnowsCompositor) {
20 if (!mTextureClient) {
21 BackendType backend = BackendType::NONE;
22 mTextureClient = TextureClient::CreateWithData(
23 WaylandDMABUFTextureData::Create(mSurface, backend),
24 TextureFlags::DEFAULT, aKnowsCompositor->GetTextureForwarder());
26 return mTextureClient;