diff options
Diffstat (limited to 'include/gpu')
-rw-r--r-- | include/gpu/GrContext.h | 14 | ||||
-rw-r--r-- | include/gpu/SkGpuDevice.h | 2 |
2 files changed, 9 insertions, 7 deletions
diff --git a/include/gpu/GrContext.h b/include/gpu/GrContext.h index b1e9dd6193..399b372e77 100644 --- a/include/gpu/GrContext.h +++ b/include/gpu/GrContext.h @@ -442,15 +442,12 @@ public: * Draws an oval. * * @param paint describes how to color pixels. - * @param rect the bounding rect of the oval. - * @param strokeWidth if strokeWidth < 0, then the oval is filled, else - * the rect is stroked based on strokeWidth. If - * strokeWidth == 0, then the stroke is always a single - * pixel thick. + * @param oval the bounding rect of the oval. + * @param stroke the stroke information (width, style) */ void drawOval(const GrPaint& paint, - const GrRect& rect, - SkScalar strokeWidth); + const GrRect& oval, + const SkStrokeRec& stroke); /////////////////////////////////////////////////////////////////////////// // Misc. @@ -910,6 +907,9 @@ private: void internalDrawPath(const GrPaint& paint, const SkPath& path, const SkStrokeRec& stroke); + void internalDrawOval(const GrPaint& paint, const GrRect& oval, const SkStrokeRec& stroke); + bool canDrawOval(const GrPaint& paint, const GrRect& oval, const SkStrokeRec& stroke) const; + GrTexture* createResizedTexture(const GrTextureDesc& desc, const GrCacheID& cacheID, void* srcData, diff --git a/include/gpu/SkGpuDevice.h b/include/gpu/SkGpuDevice.h index 45b069397e..815376fbfa 100644 --- a/include/gpu/SkGpuDevice.h +++ b/include/gpu/SkGpuDevice.h @@ -64,6 +64,8 @@ public: const SkPoint[], const SkPaint& paint) SK_OVERRIDE; virtual void drawRect(const SkDraw&, const SkRect& r, const SkPaint& paint) SK_OVERRIDE; + virtual void drawOval(const SkDraw&, const SkRect& oval, + const SkPaint& paint) SK_OVERRIDE; virtual void drawPath(const SkDraw&, const SkPath& path, const SkPaint& paint, const SkMatrix* prePathMatrix, bool pathIsMutable) SK_OVERRIDE; |