3d graphics for android

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By VLAHIN

3D graphics on a computer and on an android are different. Even if you choose a different OpenGl, the graphics are still very different. What settings should I use to make the graphics good on android?

Post screenshots.

yrtv | 2021-10-01 02:36

:bust_in_silhouette: Reply From: Wakatta

That is due to a difference in rendering between desktop and mobile

Desktop

  • Direct3D (Windows)
  • OpenGL (Unix, MacOSX kinda)

Mobile

  • OpenGL | ES

OpenGL| ES is a stripped version of OpenGL for obvious reasons because you would not want a full fledged GPU API doing extra calculations on a device limited by a battery.

To get “good graphics” is entirely subjective and will be up to your own creativity.

All the above is not said to discourage, rather to make you understand that there are limits you will have to work within especially on mobile where you need to find the right balance between quality and performance.