OLD | NEW |
| (Empty) |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "config.h" | |
6 | |
7 #include "cc/test/fake_proxy.h" | |
8 | |
9 namespace cc { | |
10 | |
11 bool FakeProxy::compositeAndReadback(void *pixels, const gfx::Rect&) | |
12 { | |
13 return false; | |
14 } | |
15 | |
16 bool FakeProxy::isStarted() const | |
17 { | |
18 return false; | |
19 } | |
20 | |
21 bool FakeProxy::initializeContext() | |
22 { | |
23 return false; | |
24 } | |
25 | |
26 bool FakeProxy::initializeRenderer() | |
27 { | |
28 return false; | |
29 } | |
30 | |
31 bool FakeProxy::recreateContext() | |
32 { | |
33 return false; | |
34 } | |
35 | |
36 const RendererCapabilities& FakeProxy::rendererCapabilities() const | |
37 { | |
38 return m_capabilities; | |
39 } | |
40 | |
41 bool FakeProxy::commitRequested() const | |
42 { | |
43 return false; | |
44 } | |
45 | |
46 size_t FakeProxy::maxPartialTextureUpdates() const | |
47 { | |
48 return 0; | |
49 } | |
50 | |
51 | |
52 } // namespace cc | |
OLD | NEW |