Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f3662e4c authored by Leon Scroggins III's avatar Leon Scroggins III Committed by Android Git Automerger
Browse files

am b10d4beb: am 41508fb0: Merge "Document BlurMaskFilter.Blur." into lmp-dev

* commit 'b10d4beb1fdf61271c9f718ed56d9d6b51077d8c':
  Document BlurMaskFilter.Blur.
parents 19393ccd 5e710c11
Loading
Loading
Loading
Loading
+19 −4
Original line number Diff line number Diff line
@@ -25,10 +25,25 @@ package android.graphics;
public class BlurMaskFilter extends MaskFilter {

    public enum Blur {
        NORMAL(0),  //!< blur inside and outside of the original border
        SOLID(1),   //!< include the original mask, blur outside
        OUTER(2),   //!< just blur outside the original border
        INNER(3);   //!< just blur inside the original border
        /**
         * Blur inside and outside the original border.
         */
        NORMAL(0),

        /**
         * Draw solid inside the border, blur outside.
         */
        SOLID(1),

        /**
         * Draw nothing inside the border, blur outside.
         */
        OUTER(2),

        /**
         * Blur inside the border, draw nothing outside.
         */
        INNER(3);
        
        Blur(int value) {
            native_int = value;