| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_ | 5 #ifndef PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_ |
| 6 #define PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_ | 6 #define PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 void EnsureWorkVisible() override; | 64 void EnsureWorkVisible() override; |
| 65 gpu::CommandBufferNamespace GetNamespaceID() const override; | 65 gpu::CommandBufferNamespace GetNamespaceID() const override; |
| 66 gpu::CommandBufferId GetCommandBufferID() const override; | 66 gpu::CommandBufferId GetCommandBufferID() const override; |
| 67 uint64_t GenerateFenceSyncRelease() override; | 67 uint64_t GenerateFenceSyncRelease() override; |
| 68 bool IsFenceSyncRelease(uint64_t release) override; | 68 bool IsFenceSyncRelease(uint64_t release) override; |
| 69 bool IsFenceSyncFlushed(uint64_t release) override; | 69 bool IsFenceSyncFlushed(uint64_t release) override; |
| 70 bool IsFenceSyncFlushReceived(uint64_t release) override; | 70 bool IsFenceSyncFlushReceived(uint64_t release) override; |
| 71 bool IsFenceSyncReleased(uint64_t release) override; | 71 bool IsFenceSyncReleased(uint64_t release) override; |
| 72 void SignalSyncToken(const gpu::SyncToken& sync_token, | 72 void SignalSyncToken(const gpu::SyncToken& sync_token, |
| 73 const base::Closure& callback) override; | 73 const base::Closure& callback) override; |
| 74 bool CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) override; | 74 void WaitSyncTokenHint(const gpu::SyncToken& sync_token) override; |
| 75 bool CanWaitUnverifiedSyncToken(const gpu::SyncToken& sync_token) override; |
| 75 int32_t GetExtraCommandBufferData() const override; | 76 int32_t GetExtraCommandBufferData() const override; |
| 76 | 77 |
| 77 private: | 78 private: |
| 78 bool Send(IPC::Message* msg); | 79 bool Send(IPC::Message* msg); |
| 79 void UpdateState(const gpu::CommandBuffer::State& state, bool success); | 80 void UpdateState(const gpu::CommandBuffer::State& state, bool success); |
| 80 | 81 |
| 81 // Try to read an updated copy of the state from shared memory. | 82 // Try to read an updated copy of the state from shared memory. |
| 82 void TryUpdateState(); | 83 void TryUpdateState(); |
| 83 | 84 |
| 84 // The shared memory area used to update state. | 85 // The shared memory area used to update state. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 104 uint64_t flushed_fence_sync_release_; | 105 uint64_t flushed_fence_sync_release_; |
| 105 uint64_t validated_fence_sync_release_; | 106 uint64_t validated_fence_sync_release_; |
| 106 | 107 |
| 107 DISALLOW_COPY_AND_ASSIGN(PpapiCommandBufferProxy); | 108 DISALLOW_COPY_AND_ASSIGN(PpapiCommandBufferProxy); |
| 108 }; | 109 }; |
| 109 | 110 |
| 110 } // namespace proxy | 111 } // namespace proxy |
| 111 } // namespace ppapi | 112 } // namespace ppapi |
| 112 | 113 |
| 113 #endif // PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_ | 114 #endif // PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_ |
| OLD | NEW |