Skip to content
This repository was archived by the owner on Nov 30, 2020. It is now read-only.

Commit f3af4af

Browse files
committed
Removed (yet another) platform restriction
1 parent fef3918 commit f3af4af

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

PostProcessing/Runtime/Effects/Grain.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ public sealed class Grain : PostProcessEffectSettings
2121
public override bool IsEnabledAndSupported(PostProcessRenderContext context)
2222
{
2323
return enabled.value
24-
&& intensity.value > 0f
25-
&& SystemInfo.SupportsRenderTextureFormat(RenderTextureFormat.ARGBHalf);
24+
&& intensity.value > 0f;
2625
}
2726
}
2827

0 commit comments

Comments
 (0)