| 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 "CCTiledLayerTestCommon.h" | 7 #include "CCTiledLayerTestCommon.h" |
| 8 | 8 |
| 9 using namespace WebCore; | 9 using namespace cc; |
| 10 | 10 |
| 11 namespace WebKitTests { | 11 namespace WebKitTests { |
| 12 | 12 |
| 13 FakeLayerTextureUpdater::Texture::Texture(FakeLayerTextureUpdater* layer, PassOw
nPtr<CCPrioritizedTexture> texture) | 13 FakeLayerTextureUpdater::Texture::Texture(FakeLayerTextureUpdater* layer, PassOw
nPtr<CCPrioritizedTexture> texture) |
| 14 : LayerTextureUpdater::Texture(texture) | 14 : LayerTextureUpdater::Texture(texture) |
| 15 , m_layer(layer) | 15 , m_layer(layer) |
| 16 { | 16 { |
| 17 } | 17 } |
| 18 | 18 |
| 19 FakeLayerTextureUpdater::Texture::~Texture() | 19 FakeLayerTextureUpdater::Texture::~Texture() |
| 20 { | 20 { |
| 21 } | 21 } |
| 22 | 22 |
| 23 void FakeLayerTextureUpdater::Texture::updateRect(CCResourceProvider* resourcePr
ovider, const IntRect&, const IntSize&) | 23 void FakeLayerTextureUpdater::Texture::updateRect(CCResourceProvider* resourcePr
ovider, const IntRect&, const IntSize&) |
| 24 { | 24 { |
| 25 texture()->acquireBackingTexture(resourceProvider); | 25 texture()->acquireBackingTexture(resourceProvider); |
| 26 m_layer->updateRect(); | 26 m_layer->updateRect(); |
| 27 } | 27 } |
| 28 | 28 |
| 29 void FakeLayerTextureUpdater::Texture::prepareRect(const IntRect&, WebCore::CCRe
nderingStats&) | 29 void FakeLayerTextureUpdater::Texture::prepareRect(const IntRect&, cc::CCRenderi
ngStats&) |
| 30 { | 30 { |
| 31 m_layer->prepareRect(); | 31 m_layer->prepareRect(); |
| 32 } | 32 } |
| 33 | 33 |
| 34 FakeLayerTextureUpdater::FakeLayerTextureUpdater() | 34 FakeLayerTextureUpdater::FakeLayerTextureUpdater() |
| 35 : m_prepareCount(0) | 35 : m_prepareCount(0) |
| 36 , m_updateCount(0) | 36 , m_updateCount(0) |
| 37 , m_prepareRectCount(0) | 37 , m_prepareRectCount(0) |
| 38 { | 38 { |
| 39 } | 39 } |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 createRenderSurface(); | 115 createRenderSurface(); |
| 116 | 116 |
| 117 TiledLayerChromium::setTexturePriorities(calculator); | 117 TiledLayerChromium::setTexturePriorities(calculator); |
| 118 | 118 |
| 119 if (missingTargetRenderSurface) { | 119 if (missingTargetRenderSurface) { |
| 120 clearRenderSurface(); | 120 clearRenderSurface(); |
| 121 setRenderTarget(0); | 121 setRenderTarget(0); |
| 122 } | 122 } |
| 123 } | 123 } |
| 124 | 124 |
| 125 WebCore::CCPrioritizedTextureManager* FakeTiledLayerChromium::textureManager() c
onst | 125 cc::CCPrioritizedTextureManager* FakeTiledLayerChromium::textureManager() const |
| 126 { | 126 { |
| 127 return m_textureManager; | 127 return m_textureManager; |
| 128 } | 128 } |
| 129 | 129 |
| 130 WebCore::LayerTextureUpdater* FakeTiledLayerChromium::textureUpdater() const | 130 cc::LayerTextureUpdater* FakeTiledLayerChromium::textureUpdater() const |
| 131 { | 131 { |
| 132 return m_fakeTextureUpdater.get(); | 132 return m_fakeTextureUpdater.get(); |
| 133 } | 133 } |
| 134 | 134 |
| 135 WebCore::IntSize FakeTiledLayerWithScaledBounds::contentBounds() const | 135 cc::IntSize FakeTiledLayerWithScaledBounds::contentBounds() const |
| 136 { | 136 { |
| 137 return m_forcedContentBounds; | 137 return m_forcedContentBounds; |
| 138 } | 138 } |
| 139 | 139 |
| 140 bool FakeTextureUploader::isBusy() | 140 bool FakeTextureUploader::isBusy() |
| 141 { | 141 { |
| 142 return false; | 142 return false; |
| 143 } | 143 } |
| 144 | 144 |
| 145 void FakeTextureUploader::uploadTexture(WebCore::CCResourceProvider* resourcePro
vider, Parameters upload) | 145 void FakeTextureUploader::uploadTexture(cc::CCResourceProvider* resourceProvider
, Parameters upload) |
| 146 { | 146 { |
| 147 upload.texture->updateRect(resourceProvider, upload.sourceRect, upload.destO
ffset); | 147 upload.texture->updateRect(resourceProvider, upload.sourceRect, upload.destO
ffset); |
| 148 } | 148 } |
| 149 | 149 |
| 150 } // namespace | 150 } // namespace |
| OLD | NEW |