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

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

Issue 23513016: Move oval and rect renderer includes to private interface (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 3 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/gpu/GrAARectRenderer.h ('k') | include/gpu/GrOvalRenderer.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 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 "GrColor.h" 11 #include "GrColor.h"
12 #include "GrAARectRenderer.h"
13 #include "GrClipData.h" 12 #include "GrClipData.h"
14 #include "SkMatrix.h" 13 #include "SkMatrix.h"
15 #include "GrPaint.h" 14 #include "GrPaint.h"
16 #include "GrPathRendererChain.h" 15 #include "GrPathRendererChain.h"
17 #include "GrPoint.h" 16 #include "GrPoint.h"
18 #include "GrRenderTarget.h" 17 #include "GrRenderTarget.h"
19 #include "GrRefCnt.h" 18 #include "GrRefCnt.h"
20 #include "GrTexture.h" 19 #include "GrTexture.h"
21 20
21 class GrAARectRenderer;
22 class GrAutoScratchTexture; 22 class GrAutoScratchTexture;
23 class GrDrawState; 23 class GrDrawState;
24 class GrDrawTarget; 24 class GrDrawTarget;
25 class GrEffect; 25 class GrEffect;
26 class GrFontCache; 26 class GrFontCache;
27 class GrGpu; 27 class GrGpu;
28 class GrIndexBuffer; 28 class GrIndexBuffer;
29 class GrIndexBufferAllocPool; 29 class GrIndexBufferAllocPool;
30 class GrInOrderDrawBuffer; 30 class GrInOrderDrawBuffer;
31 class GrOvalRenderer; 31 class GrOvalRenderer;
(...skipping 985 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 } 1017 }
1018 1018
1019 GrTexture* texture() { return fTexture; } 1019 GrTexture* texture() { return fTexture; }
1020 1020
1021 private: 1021 private:
1022 GrContext* fContext; 1022 GrContext* fContext;
1023 GrTexture* fTexture; 1023 GrTexture* fTexture;
1024 }; 1024 };
1025 1025
1026 #endif 1026 #endif
OLDNEW
« no previous file with comments | « include/gpu/GrAARectRenderer.h ('k') | include/gpu/GrOvalRenderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698