Back to project page android_shaderize.
The source code is released under:
Apache License
If you think the Android project android_shaderize listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package fi.harism.shaderize; /* w w w. ja va2 s . com*/ import android.content.Context; import android.content.SharedPreferences; import android.view.ViewGroup; public abstract class Renderer { public boolean mInitilized = false; public abstract void onDestroy(); public abstract void onDrawFrame(ObjFbo fbo, ObjScene scene); public abstract void onSurfaceChanged(int width, int height) throws Exception; public abstract void onSurfaceCreated() throws Exception; public abstract void setContext(Context context); public abstract void setPreferences(SharedPreferences prefs, ViewGroup parent); }