Files
codeql/java/ql/test/stubs/google-android-9.0.0/android/graphics/RenderEffect.java
Tony Torralba a59a4024a5 Update stubs
2022-01-14 10:32:36 +01:00

26 lines
1.4 KiB
Java
Generated

// Generated automatically from android.graphics.RenderEffect for testing purposes
package android.graphics;
import android.graphics.Bitmap;
import android.graphics.BlendMode;
import android.graphics.ColorFilter;
import android.graphics.Rect;
import android.graphics.Shader;
public class RenderEffect
{
protected RenderEffect() {}
public static RenderEffect createBitmapEffect(Bitmap p0){ return null; }
public static RenderEffect createBitmapEffect(Bitmap p0, Rect p1, Rect p2){ return null; }
public static RenderEffect createBlendModeEffect(RenderEffect p0, RenderEffect p1, BlendMode p2){ return null; }
public static RenderEffect createBlurEffect(float p0, float p1, RenderEffect p2, Shader.TileMode p3){ return null; }
public static RenderEffect createBlurEffect(float p0, float p1, Shader.TileMode p2){ return null; }
public static RenderEffect createChainEffect(RenderEffect p0, RenderEffect p1){ return null; }
public static RenderEffect createColorFilterEffect(ColorFilter p0){ return null; }
public static RenderEffect createColorFilterEffect(ColorFilter p0, RenderEffect p1){ return null; }
public static RenderEffect createOffsetEffect(float p0, float p1){ return null; }
public static RenderEffect createOffsetEffect(float p0, float p1, RenderEffect p2){ return null; }
public static RenderEffect createShaderEffect(Shader p0){ return null; }
}