| Index: sky/engine/platform/graphics/GraphicsContext.cpp
|
| diff --git a/sky/engine/platform/graphics/GraphicsContext.cpp b/sky/engine/platform/graphics/GraphicsContext.cpp
|
| index 8f17728719ba2e8e455554a12cf5a86c63c3f3f1..2a7fb3513309db43c60c37a9e355ba61b5a7893f 100644
|
| --- a/sky/engine/platform/graphics/GraphicsContext.cpp
|
| +++ b/sky/engine/platform/graphics/GraphicsContext.cpp
|
| @@ -1471,25 +1471,6 @@ void GraphicsContext::clipRRect(const SkRRect& rect, AntiAliasingMode aa, SkRegi
|
| m_canvas->clipRRect(rect, op, aa == AntiAliased);
|
| }
|
|
|
| -void GraphicsContext::beginCull(const FloatRect& rect)
|
| -{
|
| - if (contextDisabled())
|
| - return;
|
| -
|
| - realizeCanvasSave();
|
| - m_canvas->pushCull(rect);
|
| -}
|
| -
|
| -void GraphicsContext::endCull()
|
| -{
|
| - if (contextDisabled())
|
| - return;
|
| -
|
| - realizeCanvasSave();
|
| -
|
| - m_canvas->popCull();
|
| -}
|
| -
|
| void GraphicsContext::rotate(float angleInRadians)
|
| {
|
| if (contextDisabled())
|
|
|