2fbf1bc8c9
This CL enables us to set the default visibility of the symbols on Android to hidden. It is the intent that all of he SK_APIs that have been added to /src directies should be removed as soon as we can remove their callers within Android. Bug: b/31971097 Change-Id: Ic787f94df0fb0c2b8d941aa7095a12b317c4b5de Reviewed-on: https://skia-review.googlesource.com/49501 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Derek Sollenberger <djsollen@google.com>
23 lines
519 B
C++
23 lines
519 B
C++
/*
|
|
* Copyright 2008 The Android Open Source Project
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
|
|
#ifndef SkBlurDrawLooper_DEFINED
|
|
#define SkBlurDrawLooper_DEFINED
|
|
|
|
#include "SkDrawLooper.h"
|
|
|
|
/**
|
|
* Draws a shadow of the object (possibly offset), and then draws the original object in
|
|
* its original position.
|
|
*/
|
|
namespace SkBlurDrawLooper {
|
|
sk_sp<SkDrawLooper> SK_API Make(SkColor color, SkScalar sigma, SkScalar dx, SkScalar dy);
|
|
};
|
|
|
|
#endif
|