Chromium Code Reviews| Index: include/core/SkFilterQuality.h |
| diff --git a/include/core/SkFilterQuality.h b/include/core/SkFilterQuality.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..19e4748b76baa78fb901dde9eb656cdbaafa3ba6 |
| --- /dev/null |
| +++ b/include/core/SkFilterQuality.h |
| @@ -0,0 +1,20 @@ |
| +/* |
| + * Copyright 2015 Google Inc. |
| + * |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
| + */ |
| + |
| +#ifndef SkFilterQuality_DEFINED |
| +#define SkFilterQuality_DEFINED |
| + |
| +#include "SkTypes.h" |
| + |
| +enum SkFilterQuality { |
|
scroggo
2015/01/05 16:15:33
Could you add a description of what this is for?
reed1
2015/01/05 21:58:14
Done.
|
| + kNone_SkFilterQuality, |
| + kLow_SkFilterQuality, |
| + kMedium_SkFilterQuality, |
| + kHigh_SkFilterQuality |
| +}; |
| + |
| +#endif |