Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: ui/gfx/ozone/dri/scanout_surface.h

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_GFX_OZONE_DRI_SCANOUT_SURFACE_H_
6 #define UI_GFX_OZONE_DRI_SCANOUT_SURFACE_H_
7
8 #include <stdint.h>
9
10 #include "base/basictypes.h"
11
12 namespace gfx {
13
14 // Interface for a surface that can be scanned out to a monitor. It will store
15 // the internal state associated with the drawing surface associated with it.
16 // ScanoutSurface also performs all the needed operations to initialize and
17 // update the drawing surface.
18 class ScanoutSurface {
19 public:
20 ScanoutSurface() {}
21 virtual ~ScanoutSurface() {}
22
23 // Used to initialize the surface object. This involves creating the
24 // underlying buffers and initializing them.
25 // Returns true if successful, false otherwise.
26 virtual bool Initialize() = 0;
27
28 // Returns the ID of the current backbuffer.
29 virtual uint32_t GetFramebufferId() const = 0;
30
31 // Update the front buffer pointer and release the old front buffer.
32 virtual void SwapBuffers() = 0;
33
34 private:
35 DISALLOW_COPY_AND_ASSIGN(ScanoutSurface);
36 };
37
38 } // namespace gfx
39
40 #endif // UI_GFX_OZONE_DRI_SCANOUT_SURFACE_H_
OLDNEW
« no previous file with comments | « ui/gfx/ozone/dri/hardware_display_controller_unittest.cc ('k') | ui/gfx/ozone/overlay_hal_ozone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698