| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 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 | 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 "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include "cc/delegated_renderer_layer_impl.h" | 7 #include "cc/delegated_renderer_layer_impl.h" |
| 8 | 8 |
| 9 #include "cc/append_quads_data.h" | 9 #include "cc/append_quads_data.h" |
| 10 #include "cc/layer_tree_host_impl.h" | 10 #include "cc/layer_tree_host_impl.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 settings.minimumOcclusionTrackingSize = IntSize(); | 39 settings.minimumOcclusionTrackingSize = IntSize(); |
| 40 | 40 |
| 41 m_hostImpl = LayerTreeHostImpl::create(settings, this); | 41 m_hostImpl = LayerTreeHostImpl::create(settings, this); |
| 42 m_hostImpl->initializeRenderer(createContext()); | 42 m_hostImpl->initializeRenderer(createContext()); |
| 43 m_hostImpl->setViewportSize(IntSize(10, 10), IntSize(10, 10)); | 43 m_hostImpl->setViewportSize(IntSize(10, 10), IntSize(10, 10)); |
| 44 } | 44 } |
| 45 | 45 |
| 46 // LayerTreeHostImplClient implementation. | 46 // LayerTreeHostImplClient implementation. |
| 47 virtual void didLoseContextOnImplThread() OVERRIDE { } | 47 virtual void didLoseContextOnImplThread() OVERRIDE { } |
| 48 virtual void onSwapBuffersCompleteOnImplThread() OVERRIDE { } | 48 virtual void onSwapBuffersCompleteOnImplThread() OVERRIDE { } |
| 49 virtual void onVSyncParametersChanged(double, double) OVERRIDE { } | 49 virtual void onVSyncParametersChanged(base::TimeTicks, base::TimeDelta) OVER
RIDE { } |
| 50 virtual void onCanDrawStateChanged(bool) OVERRIDE { } | 50 virtual void onCanDrawStateChanged(bool) OVERRIDE { } |
| 51 virtual void setNeedsRedrawOnImplThread() OVERRIDE { } | 51 virtual void setNeedsRedrawOnImplThread() OVERRIDE { } |
| 52 virtual void setNeedsCommitOnImplThread() OVERRIDE { } | 52 virtual void setNeedsCommitOnImplThread() OVERRIDE { } |
| 53 virtual void postAnimationEventsToMainThreadOnImplThread(scoped_ptr<Animatio
nEventsVector>, double wallClockTime) OVERRIDE { } | 53 virtual void postAnimationEventsToMainThreadOnImplThread(scoped_ptr<Animatio
nEventsVector>, base::Time wallClockTime) OVERRIDE { } |
| 54 virtual bool reduceContentsTextureMemoryOnImplThread(size_t limitBytes, int
priorityCutoff) OVERRIDE { return true; } | 54 virtual bool reduceContentsTextureMemoryOnImplThread(size_t limitBytes, int
priorityCutoff) OVERRIDE { return true; } |
| 55 virtual void sendManagedMemoryStats() OVERRIDE { } | 55 virtual void sendManagedMemoryStats() OVERRIDE { } |
| 56 | 56 |
| 57 protected: | 57 protected: |
| 58 scoped_ptr<GraphicsContext> createContext() | 58 scoped_ptr<GraphicsContext> createContext() |
| 59 { | 59 { |
| 60 return FakeWebCompositorOutputSurface::create(scoped_ptr<WebKit::WebGrap
hicsContext3D>(new FakeWebGraphicsContext3D)).PassAs<GraphicsContext>(); | 60 return FakeWebCompositorOutputSurface::create(scoped_ptr<WebKit::WebGrap
hicsContext3D>(new FakeWebGraphicsContext3D)).PassAs<GraphicsContext>(); |
| 61 } | 61 } |
| 62 | 62 |
| 63 DebugScopedSetImplThread m_alwaysImplThread; | 63 DebugScopedSetImplThread m_alwaysImplThread; |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 EXPECT_EQ(sharedState, quadList[3]->sharedQuadState()); | 446 EXPECT_EQ(sharedState, quadList[3]->sharedQuadState()); |
| 447 | 447 |
| 448 // The state should be transformed only once. | 448 // The state should be transformed only once. |
| 449 EXPECT_RECT_EQ(IntRect(30, 30, 50, 50), sharedState->clippedRectInTarget); | 449 EXPECT_RECT_EQ(IntRect(30, 30, 50, 50), sharedState->clippedRectInTarget); |
| 450 WebTransformationMatrix expected; | 450 WebTransformationMatrix expected; |
| 451 expected.translate(30, 30); | 451 expected.translate(30, 30); |
| 452 EXPECT_TRANSFORMATION_MATRIX_EQ(expected, sharedState->quadTransform); | 452 EXPECT_TRANSFORMATION_MATRIX_EQ(expected, sharedState->quadTransform); |
| 453 } | 453 } |
| 454 | 454 |
| 455 } // namespace | 455 } // namespace |
| OLD | NEW |