Home | History | Annotate | Download | only in effects
      1 /*
      2  * Copyright 2008 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 
      8 
      9 #ifndef SkBlurDrawLooper_DEFINED
     10 #define SkBlurDrawLooper_DEFINED
     11 
     12 #include "SkDrawLooper.h"
     13 
     14 /**
     15  *  Draws a shadow of the object (possibly offset), and then draws the original object in
     16  *  its original position.
     17  */
     18 namespace SkBlurDrawLooper {
     19     sk_sp<SkDrawLooper> Make(SkColor color, SkScalar sigma, SkScalar dx, SkScalar dy);
     20 };
     21 
     22 #endif
     23