| Index: src/gpu/GrInOrderDrawBuffer.h
|
| diff --git a/src/gpu/GrInOrderDrawBuffer.h b/src/gpu/GrInOrderDrawBuffer.h
|
| index e6971a9e47e85b3e91f10169a453fd30ccfad3c4..1e8b5a6d3c85bb578b320d2a146efb74fda7f1b6 100644
|
| --- a/src/gpu/GrInOrderDrawBuffer.h
|
| +++ b/src/gpu/GrInOrderDrawBuffer.h
|
| @@ -76,6 +76,16 @@ public:
|
| virtual bool geometryHints(int* vertexCount,
|
| int* indexCount) const SK_OVERRIDE;
|
|
|
| + virtual bool copySurface(GrSurface* dst,
|
| + GrSurface* src,
|
| + const SkIRect& srcRect,
|
| + const SkIPoint& dstPoint) SK_OVERRIDE;
|
| +
|
| + virtual bool canCopySurface(GrSurface* dst,
|
| + GrSurface* src,
|
| + const SkIRect& srcRect,
|
| + const SkIPoint& dstPoint) SK_OVERRIDE;
|
| +
|
| virtual void clear(const SkIRect* rect,
|
| GrColor color,
|
| bool canIgnoreRect,
|
| @@ -282,14 +292,6 @@ private:
|
| virtual void geometrySourceWillPop(const GeometrySrcState& restoredState) SK_OVERRIDE;
|
| virtual void willReserveVertexAndIndexSpace(int vertexCount,
|
| int indexCount) SK_OVERRIDE;
|
| - virtual bool onCopySurface(GrSurface* dst,
|
| - GrSurface* src,
|
| - const SkIRect& srcRect,
|
| - const SkIPoint& dstPoint) SK_OVERRIDE;
|
| - virtual bool onCanCopySurface(GrSurface* dst,
|
| - GrSurface* src,
|
| - const SkIRect& srcRect,
|
| - const SkIPoint& dstPoint) SK_OVERRIDE;
|
|
|
| bool quickInsideClip(const SkRect& devBounds);
|
|
|
|
|