HomeSort by relevance Sort by last modified time
    Searched refs:DrawEllipse (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsOperation.h 363 class DrawEllipse : public Operation {
365 DrawEllipse(const IntRect& rect) : m_rect(rect) {}
367 context->drawEllipse(m_rect);
PlatformGraphicsContextRecording.cpp 806 void PlatformGraphicsContextRecording::drawEllipse(const IntRect& rect)
808 appendDrawingOperation(NEW_OP(DrawEllipse)(rect), rect);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 219 void GraphicsContext::drawEllipse(const IntRect& rect)
225 m_data->context->DrawEllipse(rect.x(), rect.y(), rect.width(), rect.height());

Completed in 240 milliseconds