| 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 GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_ | 5 #ifndef GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_ |
| 6 #define GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_ | 6 #define GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_ |
| 7 | 7 |
| 8 #include <EGL/egl.h> | 8 #include <EGL/egl.h> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 uint32 InsertSyncPoint() override; | 91 uint32 InsertSyncPoint() override; |
| 92 uint32 InsertFutureSyncPoint() override; | 92 uint32 InsertFutureSyncPoint() override; |
| 93 void RetireSyncPoint(uint32 sync_point) override; | 93 void RetireSyncPoint(uint32 sync_point) override; |
| 94 void SignalSyncPoint(uint32 sync_point, | 94 void SignalSyncPoint(uint32 sync_point, |
| 95 const base::Closure& callback) override; | 95 const base::Closure& callback) override; |
| 96 void SignalQuery(uint32 query, const base::Closure& callback) override; | 96 void SignalQuery(uint32 query, const base::Closure& callback) override; |
| 97 void SetLock(base::Lock*) override; | 97 void SetLock(base::Lock*) override; |
| 98 bool IsGpuChannelLost() override; | 98 bool IsGpuChannelLost() override; |
| 99 gpu::CommandBufferNamespace GetNamespaceID() const override; | 99 gpu::CommandBufferNamespace GetNamespaceID() const override; |
| 100 uint64_t GetCommandBufferID() const override; | 100 uint64_t GetCommandBufferID() const override; |
| 101 int32_t GetExtraCommandBufferData() const override; |
| 101 uint64_t GenerateFenceSyncRelease() override; | 102 uint64_t GenerateFenceSyncRelease() override; |
| 102 bool IsFenceSyncRelease(uint64_t release) override; | 103 bool IsFenceSyncRelease(uint64_t release) override; |
| 103 bool IsFenceSyncFlushed(uint64_t release) override; | 104 bool IsFenceSyncFlushed(uint64_t release) override; |
| 104 bool IsFenceSyncFlushReceived(uint64_t release) override; | 105 bool IsFenceSyncFlushReceived(uint64_t release) override; |
| 105 void SignalSyncToken(const gpu::SyncToken& sync_token, | 106 void SignalSyncToken(const gpu::SyncToken& sync_token, |
| 106 const base::Closure& callback) override; | 107 const base::Closure& callback) override; |
| 107 bool CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) override; | 108 bool CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) override; |
| 108 | 109 |
| 109 private: | 110 private: |
| 110 EGLNativeDisplayType display_id_; | 111 EGLNativeDisplayType display_id_; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 136 scoped_ptr<Config> config_; | 137 scoped_ptr<Config> config_; |
| 137 scoped_ptr<Surface> surface_; | 138 scoped_ptr<Surface> surface_; |
| 138 scoped_ptr<gpu::gles2::GLES2Implementation> context_; | 139 scoped_ptr<gpu::gles2::GLES2Implementation> context_; |
| 139 | 140 |
| 140 DISALLOW_COPY_AND_ASSIGN(Display); | 141 DISALLOW_COPY_AND_ASSIGN(Display); |
| 141 }; | 142 }; |
| 142 | 143 |
| 143 } // namespace egl | 144 } // namespace egl |
| 144 | 145 |
| 145 #endif // GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_ | 146 #endif // GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_ |
| OLD | NEW |