Bug 1839315: part 4) Link from `SheetLoadData::mWasAlternate` to spec. r=emilio DONTBUILD
[gecko.git] / gfx / layers / DMABUFSurfaceImage.h
blob22dda8f88b0ba2100cd6179fca1ef55c92f8d88e
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 #ifndef SURFACE_DMABUF_H
8 #define SURFACE_DMABUF_H
10 #include "ImageContainer.h"
12 class DMABufSurface;
14 namespace mozilla {
15 namespace layers {
17 class TextureClient;
19 class DMABUFSurfaceImage : public Image {
20 public:
21 explicit DMABUFSurfaceImage(DMABufSurface* aSurface);
22 ~DMABUFSurfaceImage();
24 DMABufSurface* GetSurface() { return mSurface; }
25 gfx::IntSize GetSize() const override;
26 already_AddRefed<gfx::SourceSurface> GetAsSourceSurface() override;
27 TextureClient* GetTextureClient(KnowsCompositor* aKnowsCompositor) override;
29 private:
30 RefPtr<DMABufSurface> mSurface;
31 RefPtr<TextureClient> mTextureClient;
34 } // namespace layers
35 } // namespace mozilla
37 #endif // SURFACE_DMABUF_H