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

Commit b7b8e921 authored by Leon Scroggins III's avatar Leon Scroggins III
Browse files

Document BlurMaskFilter.Blur.

BUG:1894887
Change-Id: Ia5ed8d8d5e3fcebec6f903b2641d030e8b29513c
parent 866cf65c
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;