RenderEffect.CreateColorFilterEffect Method

Definition

Overloads

CreateColorFilterEffect(ColorFilter)

Create a RenderEffect that applies the color filter to the contents of the android.graphics.RenderNode that this RenderEffect is installed on

CreateColorFilterEffect(ColorFilter, RenderEffect)

Create a RenderEffect that applies the color filter to the provided RenderEffect

CreateColorFilterEffect(ColorFilter)

Create a RenderEffect that applies the color filter to the contents of the android.graphics.RenderNode that this RenderEffect is installed on

[Android.Runtime.Register("createColorFilterEffect", "(Landroid/graphics/ColorFilter;)Landroid/graphics/RenderEffect;", "", ApiSince=31)]
public static Android.Graphics.RenderEffect CreateColorFilterEffect (Android.Graphics.ColorFilter colorFilter);
[<Android.Runtime.Register("createColorFilterEffect", "(Landroid/graphics/ColorFilter;)Landroid/graphics/RenderEffect;", "", ApiSince=31)>]
static member CreateColorFilterEffect : Android.Graphics.ColorFilter -> Android.Graphics.RenderEffect

Parameters

colorFilter
ColorFilter

ColorFilter applied to the content in the input RenderEffect

Returns

Attributes

Remarks

Create a RenderEffect that applies the color filter to the contents of the android.graphics.RenderNode that this RenderEffect is installed on

Java documentation for android.graphics.RenderEffect.createColorFilterEffect(android.graphics.ColorFilter).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

CreateColorFilterEffect(ColorFilter, RenderEffect)

Create a RenderEffect that applies the color filter to the provided RenderEffect

[Android.Runtime.Register("createColorFilterEffect", "(Landroid/graphics/ColorFilter;Landroid/graphics/RenderEffect;)Landroid/graphics/RenderEffect;", "", ApiSince=31)]
public static Android.Graphics.RenderEffect CreateColorFilterEffect (Android.Graphics.ColorFilter colorFilter, Android.Graphics.RenderEffect renderEffect);
[<Android.Runtime.Register("createColorFilterEffect", "(Landroid/graphics/ColorFilter;Landroid/graphics/RenderEffect;)Landroid/graphics/RenderEffect;", "", ApiSince=31)>]
static member CreateColorFilterEffect : Android.Graphics.ColorFilter * Android.Graphics.RenderEffect -> Android.Graphics.RenderEffect

Parameters

colorFilter
ColorFilter

ColorFilter applied to the content in the input RenderEffect

renderEffect
RenderEffect

Source to be transformed by the specified ColorFilter

Returns

Attributes

Remarks

Create a RenderEffect that applies the color filter to the provided RenderEffect

Java documentation for android.graphics.RenderEffect.createColorFilterEffect(android.graphics.ColorFilter, android.graphics.RenderEffect).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to