| 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 #ifndef CC_TEST_PIXEL_TEST_OUTPUT_SURFACE_H_ | 5 #ifndef CC_TEST_PIXEL_TEST_OUTPUT_SURFACE_H_ |
| 6 #define CC_TEST_PIXEL_TEST_OUTPUT_SURFACE_H_ | 6 #define CC_TEST_PIXEL_TEST_OUTPUT_SURFACE_H_ |
| 7 | 7 |
| 8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "cc/output/output_surface.h" | 9 #include "cc/output/output_surface.h" |
| 10 | 10 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 bool has_alpha, | 31 bool has_alpha, |
| 32 bool use_stencil) override; | 32 bool use_stencil) override; |
| 33 bool HasExternalStencilTest() const override; | 33 bool HasExternalStencilTest() const override; |
| 34 void ApplyExternalStencil() override; | 34 void ApplyExternalStencil() override; |
| 35 void SwapBuffers(OutputSurfaceFrame frame) override; | 35 void SwapBuffers(OutputSurfaceFrame frame) override; |
| 36 OverlayCandidateValidator* GetOverlayCandidateValidator() const override; | 36 OverlayCandidateValidator* GetOverlayCandidateValidator() const override; |
| 37 bool IsDisplayedAsOverlayPlane() const override; | 37 bool IsDisplayedAsOverlayPlane() const override; |
| 38 unsigned GetOverlayTextureId() const override; | 38 unsigned GetOverlayTextureId() const override; |
| 39 bool SurfaceIsSuspendForRecycle() const override; | 39 bool SurfaceIsSuspendForRecycle() const override; |
| 40 uint32_t GetFramebufferCopyTextureFormat() override; | 40 uint32_t GetFramebufferCopyTextureFormat() override; |
| 41 bool CanPartialDraw(const gfx::Rect& damage) override; |
| 41 | 42 |
| 42 void set_has_external_stencil_test(bool has_test) { | 43 void set_has_external_stencil_test(bool has_test) { |
| 43 external_stencil_test_ = has_test; | 44 external_stencil_test_ = has_test; |
| 44 } | 45 } |
| 45 | 46 |
| 46 private: | 47 private: |
| 47 void SwapBuffersCallback(); | 48 void SwapBuffersCallback(); |
| 48 | 49 |
| 49 bool external_stencil_test_ = false; | 50 bool external_stencil_test_ = false; |
| 50 OutputSurfaceClient* client_ = nullptr; | 51 OutputSurfaceClient* client_ = nullptr; |
| 51 base::WeakPtrFactory<PixelTestOutputSurface> weak_ptr_factory_; | 52 base::WeakPtrFactory<PixelTestOutputSurface> weak_ptr_factory_; |
| 52 }; | 53 }; |
| 53 | 54 |
| 54 } // namespace cc | 55 } // namespace cc |
| 55 | 56 |
| 56 #endif // CC_TEST_PIXEL_TEST_OUTPUT_SURFACE_H_ | 57 #endif // CC_TEST_PIXEL_TEST_OUTPUT_SURFACE_H_ |
| OLD | NEW |