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

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

Issue 1273613002: Revert of IWYU: 'core' target, files starting A-C. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 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 | « src/utils/debugger/SkDebugCanvas.cpp ('k') | src/utils/debugger/SkObjectParser.cpp » ('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 #ifndef SKDRAWCOMMAND_H_ 9 #ifndef SKDRAWCOMMAND_H_
10 #define SKDRAWCOMMAND_H_ 10 #define SKDRAWCOMMAND_H_
11 11
12 #include "SkCanvas.h" 12 #include "SkCanvas.h"
13 #include "SkTLazy.h"
14 #include "SkPath.h"
15 #include "SkRRect.h"
16 #include "SkString.h" 13 #include "SkString.h"
17 #include "SkTDArray.h"
18 14
19 class SK_API SkDrawCommand { 15 class SK_API SkDrawCommand {
20 public: 16 public:
21 enum OpType { 17 enum OpType {
22 kBeginDrawPicture_OpType, 18 kBeginDrawPicture_OpType,
23 kClipPath_OpType, 19 kClipPath_OpType,
24 kClipRegion_OpType, 20 kClipRegion_OpType,
25 kClipRect_OpType, 21 kClipRect_OpType,
26 kClipRRect_OpType, 22 kClipRRect_OpType,
27 kConcat_OpType, 23 kConcat_OpType,
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
594 void setUserMatrix(const SkMatrix&) override; 590 void setUserMatrix(const SkMatrix&) override;
595 void execute(SkCanvas* canvas) const override; 591 void execute(SkCanvas* canvas) const override;
596 private: 592 private:
597 SkMatrix fUserMatrix; 593 SkMatrix fUserMatrix;
598 SkMatrix fMatrix; 594 SkMatrix fMatrix;
599 595
600 typedef SkDrawCommand INHERITED; 596 typedef SkDrawCommand INHERITED;
601 }; 597 };
602 598
603 #endif 599 #endif
OLDNEW
« no previous file with comments | « src/utils/debugger/SkDebugCanvas.cpp ('k') | src/utils/debugger/SkObjectParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698