1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
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 _MOZILLA_WIDGET_WINDOW_SURFACE_H
8 #define _MOZILLA_WIDGET_WINDOW_SURFACE_H
10 #include "mozilla/gfx/2D.h"
16 // A class for drawing to double-buffered windows.
19 virtual ~WindowSurface() = default;
21 // Locks a region of the window for drawing, returning a draw target
22 // capturing the bounds of the provided region.
23 // Implementations must permit invocation from any thread.
24 virtual already_AddRefed
<gfx::DrawTarget
> Lock(
25 const LayoutDeviceIntRegion
& aRegion
) = 0;
27 // Swaps the provided invalid region from the back buffer to the window.
28 // Implementations must permit invocation from any thread.
29 virtual void Commit(const LayoutDeviceIntRegion
& aInvalidRegion
) = 0;
31 // Whether the window surface represents a fallback method.
32 virtual bool IsFallback() const { return false; }
36 } // namespace mozilla
38 #endif // _MOZILLA_WIDGET_WINDOW_SURFACE_H