blob: 7185fc909e2eb6beda674f5cc8c4618d4a0af3b8 [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
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "src/effects/SkEmbossMaskFilter.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000013
14class SkEmbossMask {
15public:
16 static void Emboss(SkMask* mask, const SkEmbossMaskFilter::Light&);
17};
18
19#endif