| Index: webkit/compositor_bindings/web_external_texture_layer_impl.cc
|
| diff --git a/webkit/compositor_bindings/web_external_texture_layer_impl.cc b/webkit/compositor_bindings/web_external_texture_layer_impl.cc
|
| index 08d8f11b20454327287165dcffe458a8ee6c5190..e3479f2125f2c8f8ba4758f034a93fa6171a8d96 100644
|
| --- a/webkit/compositor_bindings/web_external_texture_layer_impl.cc
|
| +++ b/webkit/compositor_bindings/web_external_texture_layer_impl.cc
|
| @@ -49,7 +49,7 @@ void WebExternalTextureLayerImpl::setFlipped(bool flipped)
|
|
|
| void WebExternalTextureLayerImpl::setUVRect(const WebFloatRect& rect)
|
| {
|
| - static_cast<TextureLayer*>(m_layer->layer())->setUVRect(rect);
|
| + static_cast<TextureLayer*>(m_layer->layer())->setUV(gfx::PointF(rect.x, rect.y), gfx::PointF(rect.x + rect.width, rect.y + rect.height));
|
| }
|
|
|
| void WebExternalTextureLayerImpl::setOpaque(bool opaque)
|
|
|