blob: 80fcb20c3d9b1d7c676044b529c4e11102122fa8 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2006 The Android Open Source Project
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
reed@android.com8a1c16f2008-12-17 15:59:43 +00008
9#ifndef SkEmbossMask_DEFINED
10#define SkEmbossMask_DEFINED
11
12#include "SkEmbossMaskFilter.h"
13
14class SkEmbossMask {
15public:
16 static void Emboss(SkMask* mask, const SkEmbossMaskFilter::Light&);
17};
18
19#endif