I'm trying to render a shader on my mobile device. I use Graphics.Blit to render the shader as follows,
void OnRenderImage(RenderTexture src, RenderTexture dest)
{
Graphics.Blit(src, null, shader);
}
Unfortunately, it is slow in mobile devices. Is there any workarounds to optimize the speed of the same?