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

Unified Diff: gpu/command_buffer/service/async_pixel_transfer_manager_stub.h

Issue 1186393004: gpu: Remove async texture uploads. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/service/async_pixel_transfer_manager_stub.h
diff --git a/gpu/command_buffer/service/async_pixel_transfer_manager_stub.h b/gpu/command_buffer/service/async_pixel_transfer_manager_stub.h
deleted file mode 100644
index f8ced577ed32b613045fddc383507f9e89dfceb5..0000000000000000000000000000000000000000
--- a/gpu/command_buffer/service/async_pixel_transfer_manager_stub.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_H_
-#define GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_H_
-
-#include "gpu/command_buffer/service/async_pixel_transfer_manager.h"
-
-namespace gpu {
-
-class AsyncPixelTransferManagerStub : public AsyncPixelTransferManager {
- public:
- AsyncPixelTransferManagerStub();
- ~AsyncPixelTransferManagerStub() override;
-
- // AsyncPixelTransferManager implementation:
- void BindCompletedAsyncTransfers() override;
- void AsyncNotifyCompletion(
- const AsyncMemoryParams& mem_params,
- AsyncPixelTransferCompletionObserver* observer) override;
- uint32 GetTextureUploadCount() override;
- base::TimeDelta GetTotalTextureUploadTime() override;
- void ProcessMorePendingTransfers() override;
- bool NeedsProcessMorePendingTransfers() override;
- void WaitAllAsyncTexImage2D() override;
-
- private:
- // AsyncPixelTransferManager implementation:
- AsyncPixelTransferDelegate* CreatePixelTransferDelegateImpl(
- gles2::TextureRef* ref,
- const AsyncTexImage2DParams& define_params) override;
-
- DISALLOW_COPY_AND_ASSIGN(AsyncPixelTransferManagerStub);
-};
-
-} // namespace gpu
-
-#endif // GPU_COMMAND_BUFFER_SERVICE_ASYNC_PIXEL_TRANSFER_MANAGER_STUB_H_

Powered by Google App Engine
This is Rietveld 408576698