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

Side by Side Diff: cc/test/pixel_test_output_surface.h

Issue 2776923003: cc: Partial draw without partial swap support. (Closed)
Patch Set: avoid BufferQueue::RecreateBuffer changes Created 3 years, 8 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
« no previous file with comments | « cc/test/fake_output_surface.cc ('k') | cc/test/pixel_test_output_surface.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « cc/test/fake_output_surface.cc ('k') | cc/test/pixel_test_output_surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698