Chromium Code Reviews| OLD | NEW |
|---|---|
| 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_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_SHARE_GROUP_H_ | 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_SHARE_GROUP_H_ |
| 6 #define GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_SHARE_GROUP_H_ | 6 #define GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_SHARE_GROUP_H_ |
| 7 | 7 |
| 8 #include "gpu/command_buffer/service/async_pixel_transfer_manager.h" | 8 #include "gpu/command_buffer/service/async_pixel_transfer_manager.h" |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 | 11 |
| 12 namespace gfx { | 12 namespace gfx { |
| 13 class GLContext; | 13 class GLContext; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace gpu { | 16 namespace gpu { |
| 17 class AsyncPixelTransferDelegateShareGroup; | 17 class AsyncPixelTransferDelegateShareGroup; |
| 18 class AsyncPixelTransferUploadStats; | 18 class AsyncPixelTransferUploadStats; |
| 19 | 19 |
| 20 class AsyncPixelTransferManagerShareGroup : public AsyncPixelTransferManager { | 20 class AsyncPixelTransferManagerShareGroup : public AsyncPixelTransferManager { |
| 21 public: | 21 public: |
| 22 explicit AsyncPixelTransferManagerShareGroup(gfx::GLContext* context); | 22 explicit AsyncPixelTransferManagerShareGroup(gfx::GLContext* context); |
| 23 virtual ~AsyncPixelTransferManagerShareGroup(); | 23 virtual ~AsyncPixelTransferManagerShareGroup(); |
| 24 | 24 |
| 25 // AsyncPixelTransferManager implementation: | 25 // AsyncPixelTransferManager implementation: |
| 26 virtual void BindCompletedAsyncTransfers() OVERRIDE; | 26 virtual void BindCompletedAsyncTransfers() OVERRIDE; |
| 27 virtual void AsyncRunWhenCompleted(base::Callback<void()> callback) OVERRIDE; | |
|
reveman
2014/01/22 17:30:04
where's the implementation of this?
| |
| 27 virtual void AsyncNotifyCompletion( | 28 virtual void AsyncNotifyCompletion( |
| 28 const AsyncMemoryParams& mem_params, | 29 const AsyncMemoryParams& mem_params, |
| 29 AsyncPixelTransferCompletionObserver* observer) OVERRIDE; | 30 AsyncPixelTransferCompletionObserver* observer) OVERRIDE; |
| 30 virtual uint32 GetTextureUploadCount() OVERRIDE; | 31 virtual uint32 GetTextureUploadCount() OVERRIDE; |
| 31 virtual base::TimeDelta GetTotalTextureUploadTime() OVERRIDE; | 32 virtual base::TimeDelta GetTotalTextureUploadTime() OVERRIDE; |
| 32 virtual void ProcessMorePendingTransfers() OVERRIDE; | 33 virtual void ProcessMorePendingTransfers() OVERRIDE; |
| 33 virtual bool NeedsProcessMorePendingTransfers() OVERRIDE; | 34 virtual bool NeedsProcessMorePendingTransfers() OVERRIDE; |
| 34 | 35 |
| 35 // State shared between Managers and Delegates. | 36 // State shared between Managers and Delegates. |
| 36 struct SharedState { | 37 struct SharedState { |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 50 const AsyncTexImage2DParams& define_params) OVERRIDE; | 51 const AsyncTexImage2DParams& define_params) OVERRIDE; |
| 51 | 52 |
| 52 SharedState shared_state_; | 53 SharedState shared_state_; |
| 53 | 54 |
| 54 DISALLOW_COPY_AND_ASSIGN(AsyncPixelTransferManagerShareGroup); | 55 DISALLOW_COPY_AND_ASSIGN(AsyncPixelTransferManagerShareGroup); |
| 55 }; | 56 }; |
| 56 | 57 |
| 57 } // namespace gpu | 58 } // namespace gpu |
| 58 | 59 |
| 59 #endif // GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_SHARE_GROUP_H _ | 60 #endif // GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_SHARE_GROUP_H _ |
| OLD | NEW |