I’m working on some effects in Opengl ES 1.x .
I’ve written the code in c++ so i can use it in android (using NDK) and iphone.
How can i build a project and run it on the PC without android emulator or iphone ?
I mean ; I still do not know how to use NDK , but i do know Opengl ES.
I have Ubuntu and windows on my PC .
I’m working on some effects in Opengl ES 1.x . I’ve written the code
Share
OpenGL is crossplatform. opengl es is just a subset of opengl, so you’ll have to take care what you are using (it must be supported in opengl es).
Create an example program that will create a window, and execute opengl functions. Build your program on PC, and execute. You’ll still have to try your program in the emulator (or phone)