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 "cc/test/pixel_test_output_surface.h" | 5 #include "cc/test/pixel_test_output_surface.h" |
6 | 6 |
7 #include "cc/output/output_surface_client.h" | 7 #include "cc/output/output_surface_client.h" |
8 #include "ui/gfx/transform.h" | 8 #include "ui/gfx/transform.h" |
9 | 9 |
10 namespace cc { | 10 namespace cc { |
11 | 11 |
12 PixelTestOutputSurface::PixelTestOutputSurface( | 12 PixelTestOutputSurface::PixelTestOutputSurface( |
13 scoped_refptr<ContextProvider> context_provider, | 13 scoped_refptr<ContextProvider> context_provider, |
14 scoped_refptr<ContextProvider> worker_context_provider, | 14 scoped_refptr<ContextProvider> worker_context_provider, |
15 bool flipped_output_surface) | 15 bool flipped_output_surface) |
16 : OutputSurface(context_provider, worker_context_provider), | 16 : OutputSurface(context_provider, worker_context_provider), |
17 external_stencil_test_(false) { | 17 external_stencil_test_(false) { |
| 18 capabilities_.adjust_deadline_for_parent = false; |
18 capabilities_.flipped_output_surface = flipped_output_surface; | 19 capabilities_.flipped_output_surface = flipped_output_surface; |
19 } | 20 } |
20 | 21 |
21 PixelTestOutputSurface::PixelTestOutputSurface( | 22 PixelTestOutputSurface::PixelTestOutputSurface( |
22 scoped_refptr<ContextProvider> context_provider, | 23 scoped_refptr<ContextProvider> context_provider, |
23 bool flipped_output_surface) | 24 bool flipped_output_surface) |
24 : PixelTestOutputSurface(context_provider, | 25 : PixelTestOutputSurface(context_provider, |
25 nullptr, | 26 nullptr, |
26 flipped_output_surface) { | 27 flipped_output_surface) { |
27 } | 28 } |
(...skipping 13 matching lines...) Expand all Loading... |
41 bool PixelTestOutputSurface::HasExternalStencilTest() const { | 42 bool PixelTestOutputSurface::HasExternalStencilTest() const { |
42 return external_stencil_test_; | 43 return external_stencil_test_; |
43 } | 44 } |
44 | 45 |
45 void PixelTestOutputSurface::SwapBuffers(CompositorFrame* frame) { | 46 void PixelTestOutputSurface::SwapBuffers(CompositorFrame* frame) { |
46 PostSwapBuffersComplete(); | 47 PostSwapBuffersComplete(); |
47 client_->DidSwapBuffers(); | 48 client_->DidSwapBuffers(); |
48 } | 49 } |
49 | 50 |
50 } // namespace cc | 51 } // namespace cc |
OLD | NEW |