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

Side by Side Diff: gpu/command_buffer/service/async_pixel_transfer_manager_stub.h

Issue 16175005: GPU: Replace AsyncPixelTransferState with AsyncPixelTransferDelegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 6 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_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_H_ 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_H_
6 #define GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_H_ 6 #define GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_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 namespace gpu { 10 namespace gpu {
11 11
12 class AsyncPixelTransferDelegateStub;
13
14 class AsyncPixelTransferManagerStub : public AsyncPixelTransferManager { 12 class AsyncPixelTransferManagerStub : public AsyncPixelTransferManager {
15 public: 13 public:
16 AsyncPixelTransferManagerStub(); 14 AsyncPixelTransferManagerStub();
17 virtual ~AsyncPixelTransferManagerStub(); 15 virtual ~AsyncPixelTransferManagerStub();
18 16
19 // AsyncPixelTransferManager implementation: 17 // AsyncPixelTransferManager implementation:
20 virtual void BindCompletedAsyncTransfers() OVERRIDE; 18 virtual void BindCompletedAsyncTransfers() OVERRIDE;
21 virtual void AsyncNotifyCompletion( 19 virtual void AsyncNotifyCompletion(
22 const AsyncMemoryParams& mem_params, 20 const AsyncMemoryParams& mem_params,
23 const CompletionCallback& callback) OVERRIDE; 21 const CompletionCallback& callback) OVERRIDE;
24 virtual uint32 GetTextureUploadCount() OVERRIDE; 22 virtual uint32 GetTextureUploadCount() OVERRIDE;
25 virtual base::TimeDelta GetTotalTextureUploadTime() OVERRIDE; 23 virtual base::TimeDelta GetTotalTextureUploadTime() OVERRIDE;
26 virtual void ProcessMorePendingTransfers() OVERRIDE; 24 virtual void ProcessMorePendingTransfers() OVERRIDE;
27 virtual bool NeedsProcessMorePendingTransfers() OVERRIDE; 25 virtual bool NeedsProcessMorePendingTransfers() OVERRIDE;
28 virtual AsyncPixelTransferDelegate* GetAsyncPixelTransferDelegate() OVERRIDE;
29 26
30 private: 27 private:
31 scoped_ptr<AsyncPixelTransferDelegateStub> delegate_; 28 // AsyncPixelTransferManager implementation:
29 virtual AsyncPixelTransferDelegate* CreatePixelTransferDelegateImpl(
30 gles2::TextureRef* ref,
31 const AsyncTexImage2DParams& define_params) OVERRIDE;
32 32
33 DISALLOW_COPY_AND_ASSIGN(AsyncPixelTransferManagerStub); 33 DISALLOW_COPY_AND_ASSIGN(AsyncPixelTransferManagerStub);
34 }; 34 };
35 35
36 } // namespace gpu 36 } // namespace gpu
37 37
38 #endif // GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_H_ 38 #endif // GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698