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

Side by Side Diff: include/gpu/GrContext.h

Issue 326103002: Use vertex attributes for dash effect in gpu (Closed) Base URL: https://skia.googlesource.com/skia.git@dashPlumb2
Patch Set: Float fix Created 6 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
« no previous file with comments | « include/core/SkStrokeRec.h ('k') | src/core/SkStrokeRec.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 * Copyright 2010 Google Inc. 2 * Copyright 2010 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 GrContext_DEFINED 8 #ifndef GrContext_DEFINED
9 #define GrContext_DEFINED 9 #define GrContext_DEFINED
10 10
11 #include "GrClipData.h" 11 #include "GrClipData.h"
12 #include "GrColor.h" 12 #include "GrColor.h"
13 #include "GrPaint.h" 13 #include "GrPaint.h"
14 #include "GrPathRendererChain.h" 14 #include "GrPathRendererChain.h"
15 #include "GrRenderTarget.h" 15 #include "GrRenderTarget.h"
16 #include "GrTexture.h" 16 #include "GrTexture.h"
17 #include "SkMatrix.h" 17 #include "SkMatrix.h"
18 #include "SkPathEffect.h"
18 #include "SkTypes.h" 19 #include "SkTypes.h"
19 20
20 class GrAARectRenderer; 21 class GrAARectRenderer;
21 class GrAutoScratchTexture; 22 class GrAutoScratchTexture;
22 class GrCacheable; 23 class GrCacheable;
23 class GrDrawState; 24 class GrDrawState;
24 class GrDrawTarget; 25 class GrDrawTarget;
25 class GrEffect; 26 class GrEffect;
26 class GrFontCache; 27 class GrFontCache;
27 class GrGpu; 28 class GrGpu;
(...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 } 1129 }
1129 1130
1130 GrTexture* texture() { return fTexture; } 1131 GrTexture* texture() { return fTexture; }
1131 1132
1132 private: 1133 private:
1133 GrContext* fContext; 1134 GrContext* fContext;
1134 GrTexture* fTexture; 1135 GrTexture* fTexture;
1135 }; 1136 };
1136 1137
1137 #endif 1138 #endif
OLDNEW
« no previous file with comments | « include/core/SkStrokeRec.h ('k') | src/core/SkStrokeRec.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698