OLD | NEW |
(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_ |
OLD | NEW |