| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2010 Google Inc. | 3 * Copyright 2010 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 #ifndef SkGpuDevice_DEFINED | 9 #ifndef SkGpuDevice_DEFINED |
| 10 #define SkGpuDevice_DEFINED | 10 #define SkGpuDevice_DEFINED |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 SkCanvas::DrawBitmapRectFlags flags, | 210 SkCanvas::DrawBitmapRectFlags flags, |
| 211 int tileSize, | 211 int tileSize, |
| 212 bool bicubic); | 212 bool bicubic); |
| 213 | 213 |
| 214 void internalDrawPath(const SkPath& origSrcPath, const SkPaint& paint, | 214 void internalDrawPath(const SkPath& origSrcPath, const SkPaint& paint, |
| 215 const SkMatrix& origViewMatrix, const SkMatrix* prePat
hMatrix, | 215 const SkMatrix& origViewMatrix, const SkMatrix* prePat
hMatrix, |
| 216 const SkIRect& clipBounds, bool pathIsMutable); | 216 const SkIRect& clipBounds, bool pathIsMutable); |
| 217 | 217 |
| 218 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint); | 218 bool drawDashLine(const SkPoint pts[2], const SkPaint& paint); |
| 219 | 219 |
| 220 static SkPicture::AccelData::Key ComputeAccelDataKey(); | |
| 221 | |
| 222 static GrRenderTarget* CreateRenderTarget(GrContext*, SkSurface::Budgeted, c
onst SkImageInfo&, | 220 static GrRenderTarget* CreateRenderTarget(GrContext*, SkSurface::Budgeted, c
onst SkImageInfo&, |
| 223 int sampleCount); | 221 int sampleCount); |
| 224 | 222 |
| 225 friend class GrAtlasTextContext; | 223 friend class GrAtlasTextContext; |
| 226 friend class GrTextContext; | 224 friend class GrTextContext; |
| 227 typedef SkBaseDevice INHERITED; | 225 typedef SkBaseDevice INHERITED; |
| 228 }; | 226 }; |
| 229 | 227 |
| 230 #endif | 228 #endif |
| OLD | NEW |