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 #include "gpu/command_buffer/service/async_pixel_transfer_manager_stub.h" | 5 #include "gpu/command_buffer/service/async_pixel_transfer_manager_stub.h" |
6 | 6 |
7 #include "gpu/command_buffer/service/async_pixel_transfer_delegate.h" | 7 #include "gpu/command_buffer/service/async_pixel_transfer_delegate.h" |
8 | 8 |
9 namespace gpu { | 9 namespace gpu { |
10 | 10 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 return base::TimeDelta(); | 71 return base::TimeDelta(); |
72 } | 72 } |
73 | 73 |
74 void AsyncPixelTransferManagerStub::ProcessMorePendingTransfers() { | 74 void AsyncPixelTransferManagerStub::ProcessMorePendingTransfers() { |
75 } | 75 } |
76 | 76 |
77 bool AsyncPixelTransferManagerStub::NeedsProcessMorePendingTransfers() { | 77 bool AsyncPixelTransferManagerStub::NeedsProcessMorePendingTransfers() { |
78 return false; | 78 return false; |
79 } | 79 } |
80 | 80 |
81 void AsyncPixelTransferManagerStub::WaitAllAsyncTexImage2D() { | |
82 } | |
83 | |
84 AsyncPixelTransferDelegate* | 81 AsyncPixelTransferDelegate* |
85 AsyncPixelTransferManagerStub::CreatePixelTransferDelegateImpl( | 82 AsyncPixelTransferManagerStub::CreatePixelTransferDelegateImpl( |
86 gles2::TextureRef* ref, | 83 gles2::TextureRef* ref, |
87 const AsyncTexImage2DParams& define_params) { | 84 const AsyncTexImage2DParams& define_params) { |
88 return new AsyncPixelTransferDelegateStub(); | 85 return new AsyncPixelTransferDelegateStub(); |
89 } | 86 } |
90 | 87 |
91 } // namespace gpu | 88 } // namespace gpu |
OLD | NEW |