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

Side by Side Diff: src/gpu/GrReducedClip.h

Issue 325843002: Add some missing header include guards (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Moved header guards as per tfarina's comment 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 | « src/gpu/GrAAConvexPathRenderer.h ('k') | src/pathops/SkLineParameters.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 #ifndef GrReducedClip_DEFINED
10 #define GrReducedClip_DEFINED
11
9 #include "SkClipStack.h" 12 #include "SkClipStack.h"
10 #include "SkTLList.h" 13 #include "SkTLList.h"
11 14
12 namespace GrReducedClip { 15 namespace GrReducedClip {
13 16
14 typedef SkTLList<SkClipStack::Element> ElementList; 17 typedef SkTLList<SkClipStack::Element> ElementList;
15 18
16 enum InitialState { 19 enum InitialState {
17 kAllIn_InitialState, 20 kAllIn_InitialState,
18 kAllOut_InitialState, 21 kAllOut_InitialState,
(...skipping 15 matching lines...) Expand all
34 */ 37 */
35 SK_API void ReduceClipStack(const SkClipStack& stack, 38 SK_API void ReduceClipStack(const SkClipStack& stack,
36 const SkIRect& queryBounds, 39 const SkIRect& queryBounds,
37 ElementList* result, 40 ElementList* result,
38 int32_t* resultGenID, 41 int32_t* resultGenID,
39 InitialState* initialState, 42 InitialState* initialState,
40 SkIRect* tighterBounds = NULL, 43 SkIRect* tighterBounds = NULL,
41 bool* requiresAA = NULL); 44 bool* requiresAA = NULL);
42 45
43 } // namespace GrReducedClip 46 } // namespace GrReducedClip
47
48 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrAAConvexPathRenderer.h ('k') | src/pathops/SkLineParameters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698