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

Side by Side Diff: gpu/command_buffer/client/client_test_helper.h

Issue 619453002: gpu: Remove Echo and SwapCompletion GL interfacess (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tits
Patch Set: remove comment Created 6 years, 2 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
OLDNEW
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 // Helper classes for implementing gpu client side unit tests. 5 // Helper classes for implementing gpu client side unit tests.
6 6
7 #ifndef GPU_COMMAND_BUFFER_CLIENT_CLIENT_TEST_HELPER_H_ 7 #ifndef GPU_COMMAND_BUFFER_CLIENT_CLIENT_TEST_HELPER_H_
8 #define GPU_COMMAND_BUFFER_CLIENT_CLIENT_TEST_HELPER_H_ 8 #define GPU_COMMAND_BUFFER_CLIENT_CLIENT_TEST_HELPER_H_
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 gfx::GpuMemoryBuffer*(size_t width, 92 gfx::GpuMemoryBuffer*(size_t width,
93 size_t height, 93 size_t height,
94 unsigned internalformat, 94 unsigned internalformat,
95 unsigned usage, 95 unsigned usage,
96 int32* id)); 96 int32* id));
97 MOCK_METHOD1(DestroyGpuMemoryBuffer, void(int32 id)); 97 MOCK_METHOD1(DestroyGpuMemoryBuffer, void(int32 id));
98 MOCK_METHOD0(InsertSyncPoint, uint32()); 98 MOCK_METHOD0(InsertSyncPoint, uint32());
99 MOCK_METHOD0(InsertFutureSyncPoint, uint32()); 99 MOCK_METHOD0(InsertFutureSyncPoint, uint32());
100 MOCK_METHOD1(RetireSyncPoint, void(uint32 id)); 100 MOCK_METHOD1(RetireSyncPoint, void(uint32 id));
101 MOCK_METHOD2(SignalSyncPoint, void(uint32 id, const base::Closure& callback)); 101 MOCK_METHOD2(SignalSyncPoint, void(uint32 id, const base::Closure& callback));
102 MOCK_METHOD1(Echo, void(const base::Closure& callback));
103
104 MOCK_METHOD2(SignalQuery, void(uint32 query, const base::Closure& callback)); 102 MOCK_METHOD2(SignalQuery, void(uint32 query, const base::Closure& callback));
105 MOCK_METHOD1(SetSurfaceVisible, void(bool visible)); 103 MOCK_METHOD1(SetSurfaceVisible, void(bool visible));
106 MOCK_METHOD1(CreateStreamTexture, uint32(uint32)); 104 MOCK_METHOD1(CreateStreamTexture, uint32(uint32));
107 105
108 private: 106 private:
109 DISALLOW_COPY_AND_ASSIGN(MockClientGpuControl); 107 DISALLOW_COPY_AND_ASSIGN(MockClientGpuControl);
110 }; 108 };
111 109
112 } // namespace gpu 110 } // namespace gpu
113 111
114 #endif // GPU_COMMAND_BUFFER_CLIENT_CLIENT_TEST_HELPER_H_ 112 #endif // GPU_COMMAND_BUFFER_CLIENT_CLIENT_TEST_HELPER_H_
115 113
OLDNEW
« no previous file with comments | « content/renderer/pepper/ppb_graphics_3d_impl.cc ('k') | gpu/command_buffer/client/context_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698