blob: 37574ec58c67b9f5cad21939534f62f8bfd6d133 [file] [log] [blame]
commit-bot@chromium.org3eedb802014-03-28 15:58:31 +00001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrOvalEffect_DEFINED
9#define GrOvalEffect_DEFINED
10
11#include "GrTypes.h"
12#include "GrTypesPriv.h"
13
bsalomon97b9ab72014-07-08 06:52:35 -070014class GrEffect;
commit-bot@chromium.org3eedb802014-03-28 15:58:31 +000015struct SkRect;
16
17namespace GrOvalEffect {
18 /**
19 * Creates an effect that performs clipping against an oval.
20 */
bsalomon97b9ab72014-07-08 06:52:35 -070021 GrEffect* Create(GrEffectEdgeType, const SkRect&);
commit-bot@chromium.org3eedb802014-03-28 15:58:31 +000022};
23
24#endif