summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/skia/src/gpu/effects/GrRRectEffect.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/skia/src/gpu/effects/GrRRectEffect.h')
-rw-r--r--chromium/third_party/skia/src/gpu/effects/GrRRectEffect.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/chromium/third_party/skia/src/gpu/effects/GrRRectEffect.h b/chromium/third_party/skia/src/gpu/effects/GrRRectEffect.h
new file mode 100644
index 00000000000..45ac5f43cfb
--- /dev/null
+++ b/chromium/third_party/skia/src/gpu/effects/GrRRectEffect.h
@@ -0,0 +1,25 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef GrRRectEffect_DEFINED
+#define GrRRectEffect_DEFINED
+
+#include "GrTypes.h"
+#include "GrTypesPriv.h"
+
+class GrEffectRef;
+class SkRRect;
+
+namespace GrRRectEffect {
+ /**
+ * Creates an effect that performs anti-aliased clipping against a SkRRect. It doesn't support
+ * all varieties of SkRRect so the caller must check for a NULL return.
+ */
+ GrEffectRef* Create(GrEffectEdgeType, const SkRRect&);
+};
+
+#endif