Upstream version 5.34.92.0
[platform/framework/web/crosswalk.git] / src / gpu / command_buffer / client / context_support.h
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 GPU_COMMAND_BUFFER_CLIENT_CONTEXT_SUPPORT_H_
6 #define GPU_COMMAND_BUFFER_CLIENT_CONTEXT_SUPPORT_H_
7
8 #include "base/callback.h"
9 #include "ui/gfx/rect.h"
10
11 namespace gpu {
12 struct ManagedMemoryStats;
13
14 class ContextSupport {
15  public:
16   // Runs |callback| when a sync point is reached.
17   virtual void SignalSyncPoint(uint32 sync_point,
18                                const base::Closure& callback) = 0;
19
20   // Runs |callback| when a query created via glCreateQueryEXT() has cleared
21   // passed the glEndQueryEXT() point.
22   virtual void SignalQuery(uint32 query, const base::Closure& callback) = 0;
23
24   // For onscreen contexts, indicates that the surface visibility has changed.
25   // Clients aren't expected to draw to an invisible surface.
26   virtual void SetSurfaceVisible(bool visible) = 0;
27
28   virtual void SendManagedMemoryStats(const ManagedMemoryStats& stats) = 0;
29
30   virtual void Swap() = 0;
31   virtual void PartialSwapBuffers(const gfx::Rect& sub_buffer) = 0;
32
33   virtual void SetSwapBuffersCompleteCallback(
34       const base::Closure& callback) = 0;
35
36  protected:
37   ContextSupport() {}
38   virtual ~ContextSupport() {}
39 };
40
41 }
42
43 #endif  // GPU_COMMAND_BUFFER_CLIENT_CONTEXT_SUPPORT_H_