Archive 17/01/2023.

Android rendering problem

rku

I dont do anything fancy rendering-wise, just load a scene using default renderer and have some input handling. Very basic stuff. Everything looks fine on desktop, however on android part of curved ground mesh renders texture in sort of stepped pattern where it should be a straight line. Cant see anything of this sort on desktop. Any idea what could cause this?

Bananaft

My bet on floating point precision. Mobile GPUs can be really bad at it. If you have a very long and thin polygons here, try splitting them to shorter ones.

rku

Spot on. Subdividing mesh horizontally few fixed it. As you said i had very long polygons going forward. Thank you o/