| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 // This file defines tests that implementations of GpuMemoryBufferFactory should | 5 // This file defines tests that implementations of GpuMemoryBufferFactory should |
| 6 // pass in order to be conformant. | 6 // pass in order to be conformant. |
| 7 | 7 |
| 8 #ifndef CONTENT_TEST_GPU_MEMORY_BUFFER_IMPL_TEST_TEMPLATE_H_ | 8 #ifndef CONTENT_TEST_GPU_MEMORY_BUFFER_IMPL_TEST_TEMPLATE_H_ |
| 9 #define CONTENT_TEST_GPU_MEMORY_BUFFER_IMPL_TEST_TEMPLATE_H_ | 9 #define CONTENT_TEST_GPU_MEMORY_BUFFER_IMPL_TEST_TEMPLATE_H_ |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 return base::Bind(&GpuMemoryBufferImplTest::FreeGpuMemoryBuffer, | 25 return base::Bind(&GpuMemoryBufferImplTest::FreeGpuMemoryBuffer, |
| 26 base::Unretained(this), | 26 base::Unretained(this), |
| 27 GpuMemoryBufferImplType::AllocateForTesting( | 27 GpuMemoryBufferImplType::AllocateForTesting( |
| 28 size, format, usage, handle), | 28 size, format, usage, handle), |
| 29 base::Unretained(destroyed)); | 29 base::Unretained(destroyed)); |
| 30 } | 30 } |
| 31 | 31 |
| 32 private: | 32 private: |
| 33 void FreeGpuMemoryBuffer(const base::Closure& free_callback, | 33 void FreeGpuMemoryBuffer(const base::Closure& free_callback, |
| 34 bool* destroyed, | 34 bool* destroyed, |
| 35 uint32 sync_point) { | 35 const gpu::SyncToken& sync_token) { |
| 36 free_callback.Run(); | 36 free_callback.Run(); |
| 37 if (destroyed) | 37 if (destroyed) |
| 38 *destroyed = true; | 38 *destroyed = true; |
| 39 } | 39 } |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 TYPED_TEST_CASE_P(GpuMemoryBufferImplTest); | 42 TYPED_TEST_CASE_P(GpuMemoryBufferImplTest); |
| 43 | 43 |
| 44 TYPED_TEST_P(GpuMemoryBufferImplTest, CreateFromHandle) { | 44 TYPED_TEST_P(GpuMemoryBufferImplTest, CreateFromHandle) { |
| 45 const gfx::Size kBufferSize(8, 8); | 45 const gfx::Size kBufferSize(8, 8); |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 // The GpuMemoryBufferImplTest test case verifies behavior that is expected | 195 // The GpuMemoryBufferImplTest test case verifies behavior that is expected |
| 196 // from a GpuMemoryBuffer implementation in order to be conformant. | 196 // from a GpuMemoryBuffer implementation in order to be conformant. |
| 197 REGISTER_TYPED_TEST_CASE_P(GpuMemoryBufferImplTest, | 197 REGISTER_TYPED_TEST_CASE_P(GpuMemoryBufferImplTest, |
| 198 CreateFromHandle, | 198 CreateFromHandle, |
| 199 Map, | 199 Map, |
| 200 PersistentMap); | 200 PersistentMap); |
| 201 | 201 |
| 202 } // namespace content | 202 } // namespace content |
| 203 | 203 |
| 204 #endif // CONTENT_TEST_GPU_MEMORY_BUFFER_IMPL_TEST_TEMPLATE_H_ | 204 #endif // CONTENT_TEST_GPU_MEMORY_BUFFER_IMPL_TEST_TEMPLATE_H_ |
| OLD | NEW |