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

Side by Side Diff: components/mus/gles2/command_buffer_local.h

Issue 1469863003: Cleanup SurfaceVisibility code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase.. Created 5 years 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
« no previous file with comments | « cc/test/test_context_support.cc ('k') | components/mus/gles2/command_buffer_local.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 COMPONENTS_MUS_GLES2_COMMAND_BUFFER_LOCAL_H_ 5 #ifndef COMPONENTS_MUS_GLES2_COMMAND_BUFFER_LOCAL_H_
6 #define COMPONENTS_MUS_GLES2_COMMAND_BUFFER_LOCAL_H_ 6 #define COMPONENTS_MUS_GLES2_COMMAND_BUFFER_LOCAL_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 int32_t CreateGpuMemoryBufferImage(size_t width, 62 int32_t CreateGpuMemoryBufferImage(size_t width,
63 size_t height, 63 size_t height,
64 unsigned internalformat, 64 unsigned internalformat,
65 unsigned usage) override; 65 unsigned usage) override;
66 uint32 InsertSyncPoint() override; 66 uint32 InsertSyncPoint() override;
67 uint32 InsertFutureSyncPoint() override; 67 uint32 InsertFutureSyncPoint() override;
68 void RetireSyncPoint(uint32 sync_point) override; 68 void RetireSyncPoint(uint32 sync_point) override;
69 void SignalSyncPoint(uint32 sync_point, 69 void SignalSyncPoint(uint32 sync_point,
70 const base::Closure& callback) override; 70 const base::Closure& callback) override;
71 void SignalQuery(uint32 query, const base::Closure& callback) override; 71 void SignalQuery(uint32 query, const base::Closure& callback) override;
72 void SetSurfaceVisible(bool visible) override;
73 void SetLock(base::Lock*) override; 72 void SetLock(base::Lock*) override;
74 bool IsGpuChannelLost() override; 73 bool IsGpuChannelLost() override;
75 gpu::CommandBufferNamespace GetNamespaceID() const override; 74 gpu::CommandBufferNamespace GetNamespaceID() const override;
76 uint64_t GetCommandBufferID() const override; 75 uint64_t GetCommandBufferID() const override;
77 uint64_t GenerateFenceSyncRelease() override; 76 uint64_t GenerateFenceSyncRelease() override;
78 bool IsFenceSyncRelease(uint64_t release) override; 77 bool IsFenceSyncRelease(uint64_t release) override;
79 bool IsFenceSyncFlushed(uint64_t release) override; 78 bool IsFenceSyncFlushed(uint64_t release) override;
80 bool IsFenceSyncFlushReceived(uint64_t release) override; 79 bool IsFenceSyncFlushReceived(uint64_t release) override;
81 void SignalSyncToken(const gpu::SyncToken& sync_token, 80 void SignalSyncToken(const gpu::SyncToken& sync_token,
82 const base::Closure& callback) override; 81 const base::Closure& callback) override;
(...skipping 27 matching lines...) Expand all
110 uint64_t next_fence_sync_release_; 109 uint64_t next_fence_sync_release_;
111 110
112 base::WeakPtrFactory<CommandBufferLocal> weak_factory_; 111 base::WeakPtrFactory<CommandBufferLocal> weak_factory_;
113 112
114 DISALLOW_COPY_AND_ASSIGN(CommandBufferLocal); 113 DISALLOW_COPY_AND_ASSIGN(CommandBufferLocal);
115 }; 114 };
116 115
117 } // namespace mus 116 } // namespace mus
118 117
119 #endif // COMPONENTS_MUS_GLES2_COMMAND_BUFFER_LOCAL_H_ 118 #endif // COMPONENTS_MUS_GLES2_COMMAND_BUFFER_LOCAL_H_
OLDNEW
« no previous file with comments | « cc/test/test_context_support.cc ('k') | components/mus/gles2/command_buffer_local.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698