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

Side by Side Diff: tools/debugger/SkDrawCommand.cpp

Issue 1678893003: moved debugger support files from src/utils/debugger to tools/debugger (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « tools/debugger/SkDrawCommand.h ('k') | tools/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 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 980
981 void SkSetMatrixCommand::setUserMatrix(const SkMatrix& userMatrix) { 981 void SkSetMatrixCommand::setUserMatrix(const SkMatrix& userMatrix) {
982 fUserMatrix = userMatrix; 982 fUserMatrix = userMatrix;
983 } 983 }
984 984
985 void SkSetMatrixCommand::execute(SkCanvas* canvas) const { 985 void SkSetMatrixCommand::execute(SkCanvas* canvas) const {
986 SkMatrix temp = SkMatrix::Concat(fUserMatrix, fMatrix); 986 SkMatrix temp = SkMatrix::Concat(fUserMatrix, fMatrix);
987 canvas->setMatrix(temp); 987 canvas->setMatrix(temp);
988 } 988 }
989 989
OLDNEW
« no previous file with comments | « tools/debugger/SkDrawCommand.h ('k') | tools/debugger/SkObjectParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698