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

Side by Side Diff: gpu/command_buffer/client/context_support.h

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef GPU_COMMAND_BUFFER_CLIENT_CONTEXT_SUPPORT_H_ 5 #ifndef GPU_COMMAND_BUFFER_CLIENT_CONTEXT_SUPPORT_H_
6 #define GPU_COMMAND_BUFFER_CLIENT_CONTEXT_SUPPORT_H_ 6 #define GPU_COMMAND_BUFFER_CLIENT_CONTEXT_SUPPORT_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "ui/gfx/rect.h" 9 #include "ui/gfx/rect.h"
10 10
(...skipping 11 matching lines...) Expand all
22 virtual void SignalQuery(uint32 query, const base::Closure& callback) = 0; 22 virtual void SignalQuery(uint32 query, const base::Closure& callback) = 0;
23 23
24 // For onscreen contexts, indicates that the surface visibility has changed. 24 // For onscreen contexts, indicates that the surface visibility has changed.
25 // Clients aren't expected to draw to an invisible surface. 25 // Clients aren't expected to draw to an invisible surface.
26 virtual void SetSurfaceVisible(bool visible) = 0; 26 virtual void SetSurfaceVisible(bool visible) = 0;
27 27
28 virtual void SendManagedMemoryStats(const ManagedMemoryStats& stats) = 0; 28 virtual void SendManagedMemoryStats(const ManagedMemoryStats& stats) = 0;
29 29
30 virtual void Swap() = 0; 30 virtual void Swap() = 0;
31 virtual void PartialSwapBuffers(gfx::Rect sub_buffer) = 0; 31 virtual void PartialSwapBuffers(gfx::Rect sub_buffer) = 0;
32 virtual void SetOverlayPlane(int plane_id,
33 int texture_id,
34 gfx::Rect sub_buffer) = 0;
32 35
33 virtual void SetSwapBuffersCompleteCallback( 36 virtual void SetSwapBuffersCompleteCallback(
34 const base::Closure& callback) = 0; 37 const base::Closure& callback) = 0;
35 38
36 protected: 39 protected:
37 ContextSupport() {} 40 ContextSupport() {}
38 virtual ~ContextSupport() {} 41 virtual ~ContextSupport() {}
39 }; 42 };
40 43
41 } 44 }
42 45
43 #endif // GPU_COMMAND_BUFFER_CLIENT_CONTEXT_SUPPORT_H_ 46 #endif // GPU_COMMAND_BUFFER_CLIENT_CONTEXT_SUPPORT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698