wasabia / three_dart

three.js rewrite by Dart, Dart 3D library. an easy to use, lightweight, cross-platform, general purpose 3D library.
MIT License
444 stars 77 forks source link

Rendering Problems on Samsung Devices #120

Open MaxWebfactor opened 1 year ago

MaxWebfactor commented 1 year ago

Hello, i faced some problems while rendering a background svg and a 3d animation on Samsung devices with low processing power. Is there any known issue about addressing samsung devices? Devices tested:

Other devices that work:

My assumption is, that some of the slower Samsung devices are facing performance issues and discard UI frames, caused by long loading times. I already tried to reduce the jank utilizing SkSL warmup, but with no success.

I'm not quite sure how to resolve the problem due to the fact, that no errors are tracked by the flutter system.

wasabia commented 1 year ago

maybe render svg has performance problem

try use image replace svg?

MaxWebfactor commented 1 year ago

Not yet, but I will give it a try!

Thanks

Update:

Using an .png image will not solve the problem.

Regards Max