aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrReducedClip.h
diff options
context:
space:
mode:
authorGravatar george <george@mozilla.com>2014-06-20 12:01:06 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-06-20 12:01:06 -0700
commit9eb182ac4bcdc38f71a603ba958ff889fbbf5d77 (patch)
tree7269dd53bbb060464730ae6fa5d305b9562106da /src/gpu/GrReducedClip.h
parenteecc35f988662f4fa82693ad36e908d637a7d3c1 (diff)
Add some missing header include guards
BUG=skia: R=reed@google.com, bsalomon@google.com, tfarina@chromium.org Author: george@mozilla.com Review URL: https://codereview.chromium.org/325843002
Diffstat (limited to 'src/gpu/GrReducedClip.h')
-rw-r--r--src/gpu/GrReducedClip.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gpu/GrReducedClip.h b/src/gpu/GrReducedClip.h
index cbb03465fd..e3a28cc0c5 100644
--- a/src/gpu/GrReducedClip.h
+++ b/src/gpu/GrReducedClip.h
@@ -6,6 +6,9 @@
* found in the LICENSE file.
*/
+#ifndef GrReducedClip_DEFINED
+#define GrReducedClip_DEFINED
+
#include "SkClipStack.h"
#include "SkTLList.h"
@@ -41,3 +44,5 @@ SK_API void ReduceClipStack(const SkClipStack& stack,
bool* requiresAA = NULL);
} // namespace GrReducedClip
+
+#endif