| Index: sky/engine/core/html/HTMLCanvasElement.cpp
|
| diff --git a/sky/engine/core/html/HTMLCanvasElement.cpp b/sky/engine/core/html/HTMLCanvasElement.cpp
|
| index 843a94f5aeda6227d2413f9a807ee6bf4624d9b1..e464aac49b564f1ef0c51d2d64dad3096733cda9 100644
|
| --- a/sky/engine/core/html/HTMLCanvasElement.cpp
|
| +++ b/sky/engine/core/html/HTMLCanvasElement.cpp
|
| @@ -290,17 +290,9 @@ void HTMLCanvasElement::reset()
|
| bool HTMLCanvasElement::paintsIntoCanvasBuffer() const
|
| {
|
| ASSERT(m_context);
|
| -
|
| - if (!m_context->isAccelerated())
|
| - return true;
|
| -
|
| - if (renderBox() && renderBox()->hasAcceleratedCompositing())
|
| - return false;
|
| -
|
| return true;
|
| }
|
|
|
| -
|
| void HTMLCanvasElement::paint(GraphicsContext* context, const LayoutRect& r)
|
| {
|
| if (m_context) {
|
|
|