A simple opengl example of android using cle
Nov 21, 2011 9:49 PMTrackbacks 0Pageviews 119Public
Using common language extension(cle) as interface middleware, you need not care about JNI. The programming may be simple. This example is copied from ndk example hello-gl2 with small change to use cle. c code is as follows:++ #include "vsopenapi.h"…-- bool setupGraphics(int w, int h) {++ bool setupGraphics(void *object,int w, int h) {…}-- void renderFrame() {++ void renderFrame(void *object) {…}-- extern "C" {...More
Using common language extension(cle) as interface middleware, you need not care about JNI. The programming may be simple. This example is copied from ndk example hello-gl2 with small change to use cle. ...More
Common Language Extension : For Android
Nov 15, 2011 10:00 PMTrackbacks 0Pageviews 110Public
For android version, CLE is complete free, and current version supports java in calling lua, c/c++, and python(need SL4A). CLE is very easy to use and greatly simplify the programming for java with different other languages. With the help of CLE, programmers can written c/c++ share modules without any knowledge about JNI, can call lua or python and provide callback functions of java to these languages easily. CLE ...More
For android version, CLE is complete free, and current version supports java in calling lua, c/c++, and python(need SL4A). CLE is very easy to use and greatly simplify the programming for java with different ...More
Common Language Extension : Architecture
Nov 15, 2011 9:53 PMTrackbacks 0Pageviews 40Public
Common Language Extension(CLE) is a realization of common object environment. It manages interface objects and presents interface to c/c++, lua, java, python, php, c#, etc. Through these interface, special language can create, define, and control interface objects, define their functions and events, or call their functions. Architecture of objects in CLE is as follows, Objects are grouped into four kinds: serv...More
Common Language Extension(CLE) is a realization of common object environment. It manages interface objects and presents interface to c/c++, lua, java, python, php, c#, etc. Through these interface, special la...More