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

Side by Side Diff: src/utils/debugger/SkDrawCommand.cpp

Issue 16638014: Expose debugger backend classes externally. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Relocated to src/utils/debugger/ Created 7 years, 6 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 | « src/utils/debugger/SkDrawCommand.h ('k') | src/utils/debugger/SkObjectParser.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 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 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 9
10 #include "SkDrawCommand.h" 10 #include "SkDrawCommand.h"
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after
869 fDy = dy; 869 fDy = dy;
870 fDrawType = TRANSLATE; 870 fDrawType = TRANSLATE;
871 871
872 fInfo.push(SkObjectParser::ScalarToString(dx, "SkScalar dx: ")); 872 fInfo.push(SkObjectParser::ScalarToString(dx, "SkScalar dx: "));
873 fInfo.push(SkObjectParser::ScalarToString(dy, "SkScalar dy: ")); 873 fInfo.push(SkObjectParser::ScalarToString(dy, "SkScalar dy: "));
874 } 874 }
875 875
876 void Translate::execute(SkCanvas* canvas) { 876 void Translate::execute(SkCanvas* canvas) {
877 canvas->translate(fDx, fDy); 877 canvas->translate(fDx, fDy);
878 } 878 }
OLDNEW
« no previous file with comments | « src/utils/debugger/SkDrawCommand.h ('k') | src/utils/debugger/SkObjectParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698