Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(874)

Side by Side Diff: include/device/xps/SkXPSDevice.h

Issue 19977003: drawBitmap* cleanup (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Fixed bugs Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « include/core/SkDevice.h ('k') | include/gpu/SkGpuDevice.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkXPSDevice_DEFINED 8 #ifndef SkXPSDevice_DEFINED
9 #define SkXPSDevice_DEFINED 9 #define SkXPSDevice_DEFINED
10 10
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 virtual void drawPath( 88 virtual void drawPath(
89 const SkDraw&, 89 const SkDraw&,
90 const SkPath& platonicPath, 90 const SkPath& platonicPath,
91 const SkPaint& paint, 91 const SkPaint& paint,
92 const SkMatrix* prePathMatrix, 92 const SkMatrix* prePathMatrix,
93 bool pathIsMutable) SK_OVERRIDE; 93 bool pathIsMutable) SK_OVERRIDE;
94 94
95 virtual void drawBitmap( 95 virtual void drawBitmap(
96 const SkDraw&, 96 const SkDraw&,
97 const SkBitmap& bitmap, 97 const SkBitmap& bitmap,
98 const SkIRect* srcRectOrNull,
99 const SkMatrix& matrix, 98 const SkMatrix& matrix,
100 const SkPaint& paint) SK_OVERRIDE; 99 const SkPaint& paint) SK_OVERRIDE;
101 100
102 virtual void drawSprite( 101 virtual void drawSprite(
103 const SkDraw&, 102 const SkDraw&,
104 const SkBitmap& bitmap, 103 const SkBitmap& bitmap,
105 int x, int y, 104 int x, int y,
106 const SkPaint& paint) SK_OVERRIDE; 105 const SkPaint& paint) SK_OVERRIDE;
107 106
108 virtual void drawText( 107 virtual void drawText(
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 Usage usage) SK_OVERRIDE; 315 Usage usage) SK_OVERRIDE;
317 316
318 // Disable the default copy and assign implementation. 317 // Disable the default copy and assign implementation.
319 SkXPSDevice(const SkXPSDevice&); 318 SkXPSDevice(const SkXPSDevice&);
320 void operator=(const SkXPSDevice&); 319 void operator=(const SkXPSDevice&);
321 320
322 typedef SkDevice INHERITED; 321 typedef SkDevice INHERITED;
323 }; 322 };
324 323
325 #endif 324 #endif
OLDNEW
« no previous file with comments | « include/core/SkDevice.h ('k') | include/gpu/SkGpuDevice.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698