android - Export blender design to OpenGL ES 1.1 -
i'm developing , android application.
i have model on blender , want export use opengl es 1.1. on android.
how can export model set of points , vertex?
is there other suitable format use opengl es 1.1? i'm not using rendering engine.
thanks.
you can use wavefront (.obj) export, , put assets directory of project. there few different .obj importers sample code available on web. 1 of them earth live wallpaper here.
from studying code, looks me index buffer unnecessary, , earth wallpaper using draw arrays instead of draw buffers, because none of vertices reused.
i suppose expand on code identify identical vertices , merge them, might slow down load time lot.
Comments
Post a Comment