diff options
Diffstat (limited to 'cc/texture_layer_impl.h')
-rw-r--r-- | cc/texture_layer_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/texture_layer_impl.h b/cc/texture_layer_impl.h index af80284..4293be8 100644 --- a/cc/texture_layer_impl.h +++ b/cc/texture_layer_impl.h @@ -29,7 +29,7 @@ public: void setTextureId(unsigned id) { m_textureId = id; } void setPremultipliedAlpha(bool premultipliedAlpha) { m_premultipliedAlpha = premultipliedAlpha; } void setFlipped(bool flipped) { m_flipped = flipped; } - void setUVRect(const FloatRect& rect) { m_uvRect = rect; } + void setUVRect(const gfx::RectF& rect) { m_uvRect = rect; } private: explicit TextureLayerImpl(int); @@ -40,7 +40,7 @@ private: ResourceProvider::ResourceId m_externalTextureResource; bool m_premultipliedAlpha; bool m_flipped; - FloatRect m_uvRect; + gfx::RectF m_uvRect; }; } |