But if I want to using ImageFilter.MakeRuntimeShader with set childShader and input then dynamic source is gone
const srcBuilder = Skia.RuntimeShaderBuilder(shader);
const srcFilter = Skia.ImageFilter.MakeRuntimeShader(srcBuilder, null, null); // 'image' uniform will be received
const srcFilter = Skia.ImageFilter.MakeRuntimeShader(srcBuilder, 'input', input); // 'input' is set but 'image' is gone
So, There is no way to set array of childShader like follow
Description
There is no way to set array of children in Skia.ImageFilter.MakeRuntimeShader
In JSX possible like follows
and using shader also possible
But if I want to using ImageFilter.MakeRuntimeShader with set childShader and input then dynamic source is gone
So, There is no way to set array of childShader like follow
Please help